| 27 | var _ plugin.Scope = (*CicdScope)(nil) |
| 28 | |
| 29 | type CicdScope struct { |
| 30 | domainlayer.DomainEntity |
| 31 | Name string `gorm:"type:varchar(255)"` |
| 32 | Description string |
| 33 | Url string `gorm:"type:varchar(255)"` |
| 34 | CreatedDate *time.Time |
| 35 | UpdatedDate *time.Time |
| 36 | } |
| 37 | |
| 38 | func (CicdScope) TableName() string { |
| 39 | return "cicd_scopes" |
nothing calls this directly
no outgoing calls
no test coverage detected