github.com/undoio/delve@v1.9.0/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  }