fst: rename from fipc
All checks were successful
Tests / Go tests (push) Successful in 38s
Nix / NixOS tests (push) Successful in 5m48s

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
2024-12-18 15:50:46 +09:00
parent bbace8f84b
commit 2f676c9d6e
10 changed files with 48 additions and 48 deletions

View File

@@ -3,7 +3,7 @@ package state
import (
"time"
"git.ophivana.moe/security/fortify/fipc"
"git.ophivana.moe/security/fortify/fst"
)
type Store interface {
@@ -27,11 +27,11 @@ type Backend interface {
// State is the on-disk format for a fortified process's state information
type State struct {
// fortify instance id
ID [16]byte `json:"instance"`
ID fst.ID `json:"instance"`
// child process PID value
PID int `json:"pid"`
// sealed app configuration
Config *fipc.Config `json:"config"`
Config *fst.Config `json:"config"`
// process start time
Time time.Time