removed grpc server access

This commit is contained in:
Adphi 2021-09-30 17:11:58 +02:00
parent 0fd0a6ecc3
commit 6594278ead
1 changed files with 0 additions and 5 deletions

View File

@ -32,7 +32,6 @@ import (
type Service interface {
Options() Options
Server() *grpc.Server
DB() *gorm.DB
Start() error
Stop() error
@ -135,10 +134,6 @@ func (s *service) DB() *gorm.DB {
return s.opts.db
}
func (s *service) Server() *grpc.Server {
return s.server
}
func (s *service) Cmd() *cobra.Command {
return s.cmd
}