github.com/erikwilson/go-powershell@v0.0.0-20200701182037-6845e6fcfa79/middleware/types.go (about)

     1  // Copyright (c) 2017 Gorillalabs. All rights reserved.
     2  
     3  package middleware
     4  
     5  type Middleware interface {
     6  	Execute(cmd string) (string, string, error)
     7  	Exit()
     8  }