DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: cd02d545dc910ebcf43b3f88a3c40c4267879a21 tixe/api/root.go -rw-r--r-- 133 bytes
cd02d545Jonni Liljamo feat: psql with (maybe) working migration system 1 year, 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
package api

import (
	"net/http"

	"github.com/gin-gonic/gin"
)

func Root(c *gin.Context) {
	c.String(http.StatusOK, "api root")
}