Child process manager api (#64)

* child process api

* added hook to js

* process API + restructured process state storage

* formatting

* added path-pid check and fixed probs

* prettier

* added profile checking function

---------

Co-authored-by: Wyatt <wyatt@modrinth.com>
This commit is contained in:
Wyatt Verchere
2023-04-05 10:07:59 -07:00
committed by GitHub
parent 8169d3ad49
commit d5505d3298
14 changed files with 574 additions and 97 deletions

View File

@@ -1,9 +1,10 @@
//! API for interacting with Theseus
pub mod auth;
pub mod process;
pub mod profile;
pub mod profile_create;
pub mod tags;
pub mod settings;
pub mod tags;
pub mod data {
pub use crate::state::{
@@ -16,6 +17,7 @@ pub mod prelude {
pub use crate::{
auth::{self, Credentials},
data::*,
process,
profile::{self, Profile},
profile_create, settings, State,
};