rewrite weather in go

This commit is contained in:
2024-09-15 07:36:17 +03:00
parent 65297845e5
commit 605d340aa0
6 changed files with 142 additions and 56 deletions

6
pkgs/weather/default.nix Normal file
View File

@@ -0,0 +1,6 @@
{ buildGoModule }:
buildGoModule {
name = "weather";
src = ./.;
vendorHash = null;
}