8 lines
80 B
Go
8 lines
80 B
Go
package maker
|
|
|
|
type maker struct{}
|
|
|
|
func NewMaker() *maker {
|
|
return &maker{}
|
|
}
|