initial commit

This commit is contained in:
ston1th 2020-11-22 12:59:12 +01:00
commit 7715fcf373
37 changed files with 2957 additions and 0 deletions

7
pkg/api/api.go Normal file
View file

@ -0,0 +1,7 @@
package api
type Route struct {
Path string
Handler http.HandlerFunc
Methods []string
}