- Added Server Configuration settings page (backend + frontend) - Added .env config download/import API - Runtime config updates via UI - Support for all 3 themes (default, air, berry) - i18n support (zh/en)
10 lines
143 B
Go
10 lines
143 B
Go
package common
|
|
|
|
import "github.com/go-playground/validator/v10"
|
|
|
|
var Validate *validator.Validate
|
|
|
|
func init() {
|
|
Validate = validator.New()
|
|
}
|