AnP/Go/Interfaces/RoutesInterface.go

7 lines
200 B
Go

package Interfaces
type RoutesInterface interface {
// Add(inputs any, overwrite bool)
Go(request_interface RequestModelInterface, settings map[string]any, paths []string) (map[string]any, bool)
}