Initial import with modified Dockerfile for env-based config generation
This commit is contained in:
@@ -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"`
|
||||
}
|
||||
Reference in New Issue
Block a user