mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
16 lines
201 B
Go
16 lines
201 B
Go
package query
|
|
|
|
type noCond struct {
|
|
}
|
|
|
|
func (c *noCond) complies(f Fetcher) bool {
|
|
return true
|
|
}
|
|
|
|
func (c *noCond) check() (err error) {
|
|
return nil
|
|
}
|
|
|
|
func (c *noCond) string() string {
|
|
return ""
|
|
}
|