Add sqlite backend
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package sqlite
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fiatjaf.com/nostr"
|
||||
)
|
||||
|
||||
func (s *SqliteBackend) CountEvents(nostr.Filter) (uint32, error) {
|
||||
return 0, errors.New("not supported")
|
||||
}
|
||||
Reference in New Issue
Block a user