github.com/wangkui503/aero@v1.0.0/Linter.go (about)

     1  package aero
     2  
     3  import "github.com/aerogo/http/client"
     4  
     5  // Linter interface defines Begin and End methods that linters can implement.
     6  type Linter interface {
     7  	Begin(route string, uri string)
     8  	End(route string, uri string, response client.Response)
     9  }