commit fec8da191514dc9c329e5c643684272f3d868f70 Author: MeexReay Date: Mon Apr 14 01:55:25 2025 +0300 init commit diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..5af9e23 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "sRAC" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8b1a9d8 --- /dev/null +++ b/LICENSE @@ -0,0 +1,13 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + +Copyright (C) 2004 Sam Hocevar + +Everyone is permitted to copy and distribute verbatim or modified +copies of this license document, and changing it is allowed as long +as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/README.md b/README.md new file mode 100644 index 0000000..37b4359 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# sRAC +server for RAC diff --git a/config.yml b/config.yml new file mode 100644 index 0000000..b2b221d --- /dev/null +++ b/config.yml @@ -0,0 +1,4 @@ +host: 127.0.0.1:42666 + +threadpool: 10 +timeout: 5 # in seconds diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}