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