Remove user-facing new-api naming; Docker/network/container names use heicode. Go imports updated; Dockerfiles and workflows ldflags fixed. Made-with: Cursor
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()
|
|
}
|