Skip to content
Snippets Groups Projects

Draft: initial user flow for creating a wallet

Merged Janssen, D.D. (Dylan, Student M-CS) requested to merge 2-implement_all_user_flows into main
6 files
+ 156
93
Compare changes
  • Side-by-side
  • Inline
Files
6
+ 0
9
class AppUser:
def __init__(self, state):
self.state = state
pass
def set_state(self, new_state):
self.state = new_state
# TODO: change it in the database
Loading