initialize backend project

Signed-off-by: Tobias Erbshäußer <tobias@tesoft.dev>
This commit is contained in:
2026-05-24 09:31:18 +02:00
parent 126fde7151
commit 7c1e2fb228
6 changed files with 64 additions and 1 deletions
+4 -1
View File
@@ -1,5 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [ nodejs ];
nativeBuildInputs = with pkgs.buildPackages; [
go
nodejs
];
}