feat: init project with some starter Go code

This commit is contained in:
Zhongheng Liu 2024-10-20 22:21:31 +03:00
commit 5dd1cc25e9
Signed by: steven
GPG key ID: DC8F48E7B4C40905
11 changed files with 382 additions and 0 deletions

10
go.mod Normal file
View file

@ -0,0 +1,10 @@
module test/hello
go 1.23.2
require rsc.io/quote v1.5.2
require (
golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c // indirect
rsc.io/sampler v1.3.0 // indirect
)