From 44b444e67684b16eb338ef639b46d53c9eb214a1 Mon Sep 17 00:00:00 2001 From: metamuffin Date: Sat, 10 Aug 2024 22:56:09 +0200 Subject: start with client lib crate --- server/bot/Cargo.toml | 7 +++++++ server/bot/src/main.rs | 21 +++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 server/bot/Cargo.toml create mode 100644 server/bot/src/main.rs (limited to 'server/bot') diff --git a/server/bot/Cargo.toml b/server/bot/Cargo.toml new file mode 100644 index 00000000..259095ab --- /dev/null +++ b/server/bot/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "bot" +version = "0.1.0" +edition = "2021" + +[dependencies] +hurrycurry-client-lib = { path = "../client-lib" } diff --git a/server/bot/src/main.rs b/server/bot/src/main.rs new file mode 100644 index 00000000..e1be64ef --- /dev/null +++ b/server/bot/src/main.rs @@ -0,0 +1,21 @@ +/* + Hurry Curry! - a game about cooking + Copyright 2024 metamuffin + + 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, version 3 of the License only. + + 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 . + +*/ + +fn main() { + +} \ No newline at end of file -- cgit v1.2.3-70-g09d2