package controller import "go-api/pkg/context" func Health() context.CustomHandler { return func(c *context.C) { c.String(200, "ok") } }