This commit is contained in:
Dev
2025-09-15 04:02:11 +03:00
commit fc86288f06
24 changed files with 2938 additions and 0 deletions

21
go.mod Normal file
View File

@@ -0,0 +1,21 @@
module gitblog
go 1.21
require (
github.com/google/go-github/v56 v56.0.0
github.com/gorilla/handlers v1.5.2
github.com/gorilla/mux v1.8.1
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/russross/blackfriday/v2 v2.1.0
golang.org/x/oauth2 v0.15.0
)
require (
github.com/felixge/httpsnoop v1.0.3 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/go-querystring v1.1.0 // indirect
golang.org/x/net v0.19.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)