DEVELOPMENT ENVIRONMENT

~liljamo/tixe

ref: d5943140f8cddb493794934e2f533dd71491e872 tixe/api/root.go -rw-r--r-- 133 bytes
d5943140Jonni Liljamo feat: initial commit 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")
}