for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* @author : Jagepard <[email protected]>
* @license https://mit-license.org/ MIT
*/
package main
// HandlerInterface is ...
type HandlerInterface interface {
execute()
setNext(HandlerInterface)
}