mirror of
https://github.com/safing/portbase
synced 2025-09-10 06:15:08 +00:00
Finish minimal feature set, start with tests
This commit is contained in:
parent
3d60431376
commit
06a34f931e
34 changed files with 651 additions and 346 deletions
|
@ -1,5 +1,9 @@
|
|||
package query
|
||||
|
||||
import (
|
||||
"github.com/Safing/portbase/database/accessor"
|
||||
)
|
||||
|
||||
type errorCondition struct {
|
||||
err error
|
||||
}
|
||||
|
@ -10,7 +14,7 @@ func newErrorCondition(err error) *errorCondition {
|
|||
}
|
||||
}
|
||||
|
||||
func (c *errorCondition) complies(f Fetcher) bool {
|
||||
func (c *errorCondition) complies(acc accessor.Accessor) bool {
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue