mirror of
https://github.com/aljazceru/ark.git
synced 2025-12-17 04:04:21 +01:00
16 lines
310 B
Go
Executable File
16 lines
310 B
Go
Executable File
package service_interface
|
|
|
|
import (
|
|
grpc_interface "github.com/ark-network/ark/internal/interface/grpc"
|
|
)
|
|
|
|
// TODO: Edit this file to something more meaningful for your application.
|
|
type Service interface {
|
|
Start() error
|
|
Stop()
|
|
}
|
|
|
|
func NewService() (Service, error) {
|
|
return grpc_interface.NewService()
|
|
}
|
|
|