junobuild-satellite 0.5.1

Core implementation of a Juno Satellite.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::get_controllers;
use junobuild_auth::strategies::AuthAutomationStrategy;
use junobuild_shared::types::state::Controllers;

pub struct AuthAutomation;

impl AuthAutomationStrategy for AuthAutomation {
    fn get_controllers(&self) -> Controllers {
        get_controllers()
    }
}