nip34: String() methods to repository and state.

This commit is contained in:
fiatjaf
2025-11-20 23:28:50 -03:00
parent 4cbca27104
commit d37f7e0e4d
2 changed files with 11 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
package nip34
import (
"fmt"
"strings"
"fiatjaf.com/nostr"
@@ -65,3 +66,7 @@ func (rs RepositoryState) ToEvent() nostr.Event {
CreatedAt: nostr.Now(),
}
}
func (rs RepositoryState) String() string {
return fmt.Sprintf("RepositoryState{ID: %s, HEAD: %s, Tags: %v, Branches: %v}", rs.ID, rs.HEAD, rs.Tags, rs.Branches)
}