go: initialise go module
Add github.com/google/uuid as a dependency as well since it will be required for nonce generation. Exclude files based on template from GitHub. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
commit
078092bc4c
28
.gitignore
vendored
Normal file
28
.gitignore
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
# Binaries for programs and plugins
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
/rpcfetch
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
||||
# Go workspace file
|
||||
go.work
|
||||
go.work.sum
|
||||
|
||||
# env file
|
||||
.env
|
||||
|
||||
# config file
|
||||
rpcfetch.conf
|
||||
.idea
|
||||
.vscode
|
5
go.mod
Normal file
5
go.mod
Normal file
@ -0,0 +1,5 @@
|
||||
module git.ophivana.moe/cat/rpcfetch
|
||||
|
||||
go 1.22
|
||||
|
||||
require github.com/google/uuid v1.6.0 // indirect
|
Loading…
Reference in New Issue
Block a user