mirror of
https://github.com/safing/portbase
synced 2025-09-01 10:09:50 +00:00
20 lines
273 B
Go
20 lines
273 B
Go
package query
|
|
|
|
import (
|
|
"github.com/Safing/portbase/database/accessor"
|
|
)
|
|
|
|
type noCond struct {
|
|
}
|
|
|
|
func (c *noCond) complies(acc accessor.Accessor) bool {
|
|
return true
|
|
}
|
|
|
|
func (c *noCond) check() (err error) {
|
|
return nil
|
|
}
|
|
|
|
func (c *noCond) string() string {
|
|
return ""
|
|
}
|