8 lines
106 B
Go
8 lines
106 B
Go
package service
|
|
|
|
type InfoService struct{}
|
|
|
|
func NewInfoService() *InfoService {
|
|
return &InfoService{}
|
|
}
|