From 8ac63fef970e2deb9297f99737d4927cfdb779d4 Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 11 May 2020 21:17:16 +0800 Subject: [PATCH] Create Album.go --- behavioral/interpreter/Album.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 behavioral/interpreter/Album.go diff --git a/behavioral/interpreter/Album.go b/behavioral/interpreter/Album.go new file mode 100644 index 0000000..4ddec8d --- /dev/null +++ b/behavioral/interpreter/Album.go @@ -0,0 +1,12 @@ +/** + * @author : Jagepard + * @license https://mit-license.org/ MIT + */ + +package main + +// Album is ... +type Album struct { + name string + author string +}