feat: users & authentication implementation

This commit is contained in:
Florian Sylvain
2023-08-07 12:31:29 +02:00
parent e258dccc1c
commit f33f53ca76
15 changed files with 550 additions and 18 deletions
+9
View File
@@ -0,0 +1,9 @@
package api
import "github.com/go-playground/validator/v10"
var validate *validator.Validate
func InitValidator() {
validate = validator.New()
}