| 28 | } |
| 29 | |
| 30 | type Service struct { |
| 31 | common.Scope `mapstructure:",squash"` |
| 32 | Id string `json:"id" mapstructure:"id" gorm:"primaryKey;autoIncrement:false" ` |
| 33 | Url string `json:"url" mapstructure:"url"` |
| 34 | Name string `json:"name" mapstructure:"name"` |
| 35 | } |
| 36 | |
| 37 | func (s Service) ScopeId() string { |
| 38 | return s.Id |
nothing calls this directly
no outgoing calls
no test coverage detected