mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
12 lines
373 B
Go
12 lines
373 B
Go
package models
|
|
|
|
type Repository struct {
|
|
ID int `db:"id" json:"id"`
|
|
Name string `db:"name" json:"name" binding:"required"`
|
|
ProjectID int `db:"project_id" json:"project_id"`
|
|
GitUrl string `db:"git_url" json:"git_url" binding:"required"`
|
|
SshKeyID int `db:"ssh_key_id" json:"ssh_key_id" binding:"required"`
|
|
|
|
SshKey AccessKey `db:"-" json:"-"`
|
|
}
|