feat: switching to nuxt because i have a new idea

This commit is contained in:
Pihkaal
2024-10-17 18:31:45 +02:00
parent f659c72176
commit 6d4abf757e
13 changed files with 10746 additions and 129 deletions

15
main.go
View File

@@ -1,15 +0,0 @@
package main
import (
"github.com/gin-gonic/gin"
"net/http"
)
func main() {
router := gin.Default()
router.GET("/", func(c *gin.Context) {
c.String(http.StatusOK, "Ok")
})
router.Run(":8080")
}