Basic scanning working. Time to retrofit some tests....

This commit is contained in:
Deluan
2016-02-28 15:46:53 -05:00
parent 14e52576a7
commit 515279606a
6 changed files with 85 additions and 22 deletions
+13
View File
@@ -0,0 +1,13 @@
package models
type ArtistInfo struct {
ArtistId string
Artist string
}
type ArtistIndex struct {
Id string
Artists []ArtistInfo
}