chore: GPL-3.0 license propagated into *.go files in backend

This commit is contained in:
2025-06-24 01:36:25 +03:00
parent cfe60cfb8e
commit a7a200fd90
28 changed files with 470 additions and 9 deletions

View File

@@ -295,6 +295,10 @@
},
"models.LoginRequest": {
"type": "object",
"required": [
"password",
"username"
],
"properties": {
"password": {
"type": "string"
@@ -320,6 +324,10 @@
},
"models.RegistrationBeginRequest": {
"type": "object",
"required": [
"password",
"username"
],
"properties": {
"email": {
"type": "string"
@@ -329,7 +337,9 @@
"type": "string"
},
"username": {
"type": "string"
"type": "string",
"maxLength": 20,
"minLength": 3
}
}
}