Initial import with modified Dockerfile for env-based config generation

This commit is contained in:
2026-06-22 11:56:10 +03:00
parent 28fa7537ac
commit 6bf27aa40e
25 changed files with 3228 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package storage
import "time"
// User represents a user with identity mappings
type User struct {
ID int64 `json:"id"`
GiteaUsername string `json:"gitea_username"`
GiteaID int64 `json:"gitea_id"`
Email string `json:"email"`
FullName string `json:"full_name"`
SlackID string `json:"slack_id"`
SlackName string `json:"slack_name"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}