damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

StringCodable.swift (198B)


      1 //
      2 //  StringCodable.swift
      3 //  damus
      4 //
      5 //  Created by William Casarin on 2023-04-21.
      6 //
      7 
      8 import Foundation
      9 
     10 protocol StringCodable {
     11     init?(from string: String)
     12     func to_string() -> String
     13 }