factoriauth/src/main.rs

25 lines
883 B
Rust
Raw Normal View History

2024-02-09 21:22:29 +01:00
/*
factoriauth - An unofficial authentication server for Factorio
Copyright (C) 2024 lambda@xiretza.xyz
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2024-02-10 10:20:44 +01:00
#![warn(clippy::pedantic, clippy::as_conversions)]
#![forbid(unsafe_code)]
2024-02-09 21:22:29 +01:00
fn main() {
println!("Hello, world!");
}