This commit is contained in:
2025-11-10 14:55:46 +08:00
commit eb8a759d4d
22 changed files with 3383 additions and 0 deletions

9
main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import "github.com/gofiber/fiber/v2"
func main() {
app := fiber.New()
app.Listen(":3000")
}