Initial commit - test client

This commit is contained in:
cheddar 2025-02-10 23:07:41 -05:00
commit c099930cf3
No known key found for this signature in database
8 changed files with 137 additions and 0 deletions

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
go
];
}