7 lines
185 B
Go
7 lines
185 B
Go
package Interfaces
|
|
|
|
type RoutesInterface interface {
|
|
// Add(inputs any, overwrite bool)
|
|
Go(domain string, method string, url string, settings map[string]any) (map[string]any, bool)
|
|
}
|