linstrom/src/main.rs

21 lines
539 B
Rust
Raw Normal View History

// Copyright (c) 2023 mStar
//
// Licensed under the EUPL, Version 1.2
//
// You may not use this work except in compliance with the Licence.
// You should have received a copy of the Licence along with this work. If not, see:
// <https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12>.
// See the Licence for the specific language governing permissions and limitations under the Licence.
//
2023-11-27 20:52:02 +00:00
mod objects;
mod apis;
2023-11-27 20:52:02 +00:00
mod storage;
mod guardian;
mod config;
mod webui;
2023-11-27 20:52:02 +00:00
fn main() {
println!("{:?}", config::read_from_env());
}