Initial commit with command and Day interface

This commit is contained in:
2021-11-07 18:44:36 +00:00
parent 4741c5f339
commit 7b4558ed9b
6 changed files with 70 additions and 0 deletions

6
day.go Normal file
View File

@@ -0,0 +1,6 @@
package main
type Day interface {
Answer() string
FollowUp() string
}