8 lines
80 B
Go
8 lines
80 B
Go
package page
|
|
|
|
type Service struct{}
|
|
|
|
func New() *Service {
|
|
return &Service{}
|
|
}
|