Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class KeychainFacade {
  2.  
  3. func save(value: String, forKey key: String) throws {
  4. // save logic
  5. }
  6.  
  7. func readValue(forKey key: String) -> throws String {
  8. // read value logic
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement