main app
parent 2a5becac60
commit a8ef441f51

3
.gitignore vendored

@ -19,3 +19,6 @@
# Go workspace file # Go workspace file
go.work go.work
*.exe

@ -0,0 +1,11 @@
package main
import (
"fmt"
"github.com/tad17/tad/fiber"
)
func main() {
app := fiber.NewFiber()
fmt.Printf("init fiber: %v\n", app)
}
Loading…
Cancel
Save