7 lines
123 B
Go
7 lines
123 B
Go
|
package new_year_service
|
||
|
|
||
|
type NewYearService interface {
|
||
|
GetRandomImageURL() string
|
||
|
GetRandomMessage() NewYearMessage
|
||
|
}
|