DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: 98b2d44d6e1949ba64c8be88d22c94ffbed0cddc tixe/api/root.go -rw-r--r-- 133 bytes
98b2d44dJonni Liljamo feat: whole page padding 1 year, 3 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")
}