feat(users): implemented basic user creation promise
This commit is contained in:
parent
d20734c275
commit
f51843f634
3 changed files with 129 additions and 0 deletions
|
@ -14,6 +14,14 @@ func EnableDebugLogs() {
|
|||
|
||||
func Resolve() (status Status) {
|
||||
for {
|
||||
// ----- Users -------------------------------------------------
|
||||
status = resolveUsers()
|
||||
switch status {
|
||||
case BROKEN:
|
||||
return BROKEN
|
||||
case REPAIRED:
|
||||
continue
|
||||
}
|
||||
// ----- Files -------------------------------------------------
|
||||
status = resolveFiles()
|
||||
switch status {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue