@ -19,3 +19,6 @@
# Go workspace file
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)
}