From c0a8852e4ec21f15c5a862201515518c3eee7734 Mon Sep 17 00:00:00 2001 From: Emile Date: Wed, 12 Feb 2025 21:24:31 +0100 Subject: template: a basic golang app template This template allows building golang apps as well as a corresponding docker container from the built package --- nix/templates/goapp/frontend/go.mod | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 nix/templates/goapp/frontend/go.mod (limited to 'nix/templates/goapp/frontend/go.mod') diff --git a/nix/templates/goapp/frontend/go.mod b/nix/templates/goapp/frontend/go.mod new file mode 100644 index 0000000..41401c9 --- /dev/null +++ b/nix/templates/goapp/frontend/go.mod @@ -0,0 +1,5 @@ +module github.com/hanemile/goapp/backend + +go 1.23.5 + +require github.com/gorilla/mux v1.8.1 -- cgit 1.4.1