Create Album.go

This commit is contained in:
Edward 2020-05-11 21:17:16 +08:00 committed by GitHub
parent 11eb3eb608
commit 8ac63fef97
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,12 @@
/**
* @author : Jagepard <jagepard@yandex.ru>
* @license https://mit-license.org/ MIT
*/
package main
// Album is ...
type Album struct {
name string
author string
}