nip34: String() methods to repository and state.
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
package nip34
|
package nip34
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
"fiatjaf.com/nostr"
|
"fiatjaf.com/nostr"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -100,3 +102,7 @@ func (r Repository) ToEvent() nostr.Event {
|
|||||||
CreatedAt: nostr.Now(),
|
CreatedAt: nostr.Now(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (r Repository) String() string {
|
||||||
|
return fmt.Sprintf("Repository{ID: %s, Name: %s, Description: %s, Web: %v, Clone: %v, Relays: %v, EarliestUniqueCommitID: %s, Maintainers: %v}", r.ID, r.Name, r.Description, r.Web, r.Clone, r.Relays, r.EarliestUniqueCommitID, r.Maintainers)
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package nip34
|
package nip34
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"fmt"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"fiatjaf.com/nostr"
|
"fiatjaf.com/nostr"
|
||||||
@@ -65,3 +66,7 @@ func (rs RepositoryState) ToEvent() nostr.Event {
|
|||||||
CreatedAt: nostr.Now(),
|
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)
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user