github.com/geniusesgroup/libgo@v0.0.0-20220713101832-828057a9d3d4/protocol/cli.go (about)

     1  /* For license and copyright information please see LEGAL file in repository */
     2  
     3  package protocol
     4  
     5  // CLIHandler is any object to be CLI (command-line interface) service handler.
     6  type CLIHandler interface {
     7  	ServeCLI(st Stream) (err Error)
     8  }