Initial commit with command and Day interface
This commit is contained in:
16
one/main.go
Normal file
16
one/main.go
Normal 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!"
|
||||
}
|
Reference in New Issue
Block a user