This commit is contained in:
Alexis Couvreur
2024-11-19 21:21:10 -05:00
parent f8835bea68
commit 693bd636c5
6 changed files with 14 additions and 0 deletions

1
pkg/api/health.go Normal file
View File

@@ -0,0 +1 @@
package api

1
pkg/api/metrics.go Normal file
View File

@@ -0,0 +1 @@
package api

View File

@@ -0,0 +1,9 @@
package api
import "github.com/gin-gonic/gin"
func StartBlocking(router *gin.RouterGroup) {
router.GET("/blocking", func(context *gin.Context) {
})
}

1
pkg/api/start_dynamic.go Normal file
View File

@@ -0,0 +1 @@
package api

1
pkg/api/theme_list.go Normal file
View File

@@ -0,0 +1 @@
package api

1
pkg/api/theme_preview.go Normal file
View File

@@ -0,0 +1 @@
package api