Merge branch 'master' into dependabot/go_modules/golang.org/x/crypto-0.31.0

This commit is contained in:
2025-03-13 21:46:05 +03:00
7 changed files with 197 additions and 16 deletions

22
devenv.nix Normal file
View File

@@ -0,0 +1,22 @@
{
pkgs,
...
}:
{
packages = [
pkgs.git
pkgs.go_1_23
];
enterShell = ''
git --version
go version
'';
enterTest = ''
echo "Running tests"
go test -race ./...
'';
}