junobuild-satellite 0.6.0

Core implementation of a Juno Satellite.
Documentation
1
2
3
4
5
6
7
8
use crate::types::state::State;
use std::cell::RefCell;

pub mod services;

thread_local! {
    pub(crate) static STATE: RefCell<State> = RefCell::default();
}