Moved backend code into its own subfolder

This commit is contained in:
rzuasti
2026-02-10 14:03:33 -05:00
parent a86efc015a
commit 39a58983d6
17 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,4 +1,5 @@
/target
/backend/target
/result
oott.db
oott.toml
View File
View File
View File
View File
+2 -2
View File
@@ -2,9 +2,9 @@
pkgs.rustPlatform.buildRustPackage rec {
pname = "oott";
version = "0.0.1";
src = ./..;
src = ./../backend;
cargoLock = {
lockFile = ./../Cargo.lock;
lockFile = ./../backend/Cargo.lock;
};
nativeBuildInputs = [pkgs.pkg-config];