github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/service/server.go (about)

     1  package service
     2  
     3  // Server represents a server for a remote client
     4  // to connect to.
     5  type Server interface {
     6  	Run() error
     7  	Stop() error
     8  }