20 lines
385 B
Go
20 lines
385 B
Go
|
package app
|
||
|
|
||
|
import (
|
||
|
"git.ophivana.moe/security/fortify/helper/bwrap"
|
||
|
"git.ophivana.moe/security/fortify/internal"
|
||
|
"git.ophivana.moe/security/fortify/internal/system"
|
||
|
)
|
||
|
|
||
|
func NewWithID(id ID, os internal.System) App {
|
||
|
a := new(app)
|
||
|
a.id = &id
|
||
|
a.os = os
|
||
|
return a
|
||
|
}
|
||
|
|
||
|
func AppSystemBwrap(a App) (*system.I, *bwrap.Config) {
|
||
|
v := a.(*app)
|
||
|
return v.seal.sys.I, v.seal.sys.bwrap
|
||
|
}
|