mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-10 11:03:38 -05:00
917bcbc117
Signed-off-by: Brett Logan <lindluni@github.com>
31 lines
452 B
Go
31 lines
452 B
Go
package main
|
|
|
|
import (
|
|
"github.com/go-playground/validator/v10"
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
type FooType struct {
|
|
Var *string `validate:"alphanum"`
|
|
}
|
|
|
|
func post(echo.Context) (err error) {
|
|
validate := validator.New()
|
|
|
|
if err = validate.Struct(FooType{Var: nil}); err != nil {
|
|
return
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
func server() (e *echo.Echo) {
|
|
e = echo.New()
|
|
e.POST("/", post)
|
|
return
|
|
}
|
|
|
|
func main() {
|
|
e := server()
|
|
e.Logger.Fatal(e.Start(":8000"))
|
|
}
|