ndb: more id transition helpers
This commit is contained in:
@@ -12,3 +12,18 @@ typealias FollowRef = ReferencedId
|
||||
typealias Pubkey = String
|
||||
typealias NoteId = String
|
||||
typealias Privkey = String
|
||||
|
||||
extension String {
|
||||
// Id constructors
|
||||
init?(hex: String) {
|
||||
self = hex
|
||||
}
|
||||
|
||||
static var empty: String {
|
||||
return ""
|
||||
}
|
||||
|
||||
func hex() -> String {
|
||||
return self
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user