mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-22 12:46:03 +03:00
13 lines
176 B
Go
13 lines
176 B
Go
/**
|
|
* @author : Jagepard <jagepard@yandex.ru>
|
|
* @license https://mit-license.org/ MIT
|
|
*/
|
|
|
|
package main
|
|
|
|
// Album is ...
|
|
type Album struct {
|
|
name string
|
|
author string
|
|
}
|