move models, views, and controllers to root
This commit is contained in:
parent
f0d29126ab
commit
96cc64464f
21 changed files with 190 additions and 203 deletions
10
model/credit.go
Normal file
10
model/credit.go
Normal file
|
@ -0,0 +1,10 @@
|
|||
package model
|
||||
|
||||
type (
|
||||
Credit struct {
|
||||
Release Release `json:"release"`
|
||||
Artist Artist `json:"artist"`
|
||||
Role string `json:"role"`
|
||||
Primary bool `json:"primary" db:"is_primary"`
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue