Go to the documentation of this file.00001 """
00002 Implement user managent here
00003 """
00004
00005 from enum import Enum
00006 class User(Enum):
00007 """
00008 Define some default users.
00009 """
00010 Admin = 0
00011 Anonymous = 1
00012 User = 3
00013
00014
00015