GetSignature() string

This commit is contained in:
mr
2026-02-09 10:50:10 +01:00
parent c2aa2fedaa
commit bafeee0d05
2 changed files with 5 additions and 0 deletions

View File

@@ -30,6 +30,10 @@ type AbstractResource struct {
Signature string `bson:"signature" json:"signature"`
}
func (abs *AbstractResource) GetSignature() string {
return abs.Signature
}
func (abs *AbstractResource) FilterPeer(peerID string) *dbs.Filters {
return nil
}