minor fixes

This commit is contained in:
dr-frmr 2024-02-02 17:20:53 -03:00
parent 03714f02ef
commit a5d30e22fb
No known key found for this signature in database
3 changed files with 2 additions and 8 deletions

View File

@ -1,8 +0,0 @@
pub static BOOTSTRAPPED_PROCESSES: &[(&str, &[u8])] = &[
("kns_indexer.zip", include_bytes!("/home/nick/git/kinode/target/kns_indexer.zip")),
("app_store.zip", include_bytes!("/home/nick/git/kinode/target/app_store.zip")),
("homepage.zip", include_bytes!("/home/nick/git/kinode/target/homepage.zip")),
("tester.zip", include_bytes!("/home/nick/git/kinode/target/tester.zip")),
("terminal.zip", include_bytes!("/home/nick/git/kinode/target/terminal.zip")),
("chess.zip", include_bytes!("/home/nick/git/kinode/target/chess.zip")),
];

View File

@ -1,3 +1,4 @@
#![allow(unused)]
pub mod provider; pub mod provider;
pub use lib::types::eth as types; pub use lib::types::eth as types;

View File

@ -1,3 +1,4 @@
#![allow(unused)]
pub mod client; pub mod client;
pub mod server; pub mod server;
pub mod utils; pub mod utils;