diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-10-16 01:38:59 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-10-16 01:38:59 +0900 |
| commit | 084cd84f36a1d608541b4aa4e1e95334395d8953 (patch) | |
| tree | b48fac0d902627411036630d42edc1ca45057dd1 /internal/app/app.go | |
| parent | 430f1a5b4e4e2b164297391390e3a0cbe2ad2eb2 (diff) | |
app: port app to use the system package
This commit does away with almost all baggage left over from the Ego port. Error wrapping also got simplified. All API changes happens to be internal which means no changes to main except renaming of the BaseError type.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/app/app.go')
| -rw-r--r-- | internal/app/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/app.go b/internal/app/app.go index 50d59da9..a04ae74b 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -40,7 +40,7 @@ func (a *app) String() string { } if a.seal != nil { - return "(sealed fortified app as uid " + a.seal.sys.Uid + ")" + return "(sealed fortified app as uid " + a.seal.sys.user.Uid + ")" } return "(unsealed fortified app)" |
