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

16
one/main.go Normal file
View File

@@ -0,0 +1,16 @@
package one
type One struct {
}
func Init(filepath string) *One {
return nil
}
func (d *One) Answer() string {
return "Hello"
}
func (d *One) FollowUp() string {
return "World!"
}