mzack 2024-03-05 01:33:11 +01:00
parent 52beea3bcd
commit 46830d4402
1 changed files with 3 additions and 1 deletions

View File

@ -39,7 +39,9 @@ func Init(options *types.Options) error {
return err
}
MemGuardian = mg
go MemGuardian.Run(context.TODO())
go func() {
_ = MemGuardian.Run(context.TODO())
}()
}
lfaAllowed = options.AllowLocalFileAccess