Revert "feature: Adds semi-broken stability improvements into the runtime environment."

This wasn't meant to be pushed to dev.

This reverts commit 605ad31dd6.
This commit is contained in:
Tera << 8 2025-01-06 00:04:35 -05:00
parent 605ad31dd6
commit 157e1c8712
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
3 changed files with 35 additions and 205 deletions

View file

@ -12,17 +12,14 @@ type Backend struct {
}
type Runtime struct {
isRuntimeRunning bool
logger *writeLogger
currentProcess *exec.Cmd
currentListener net.Listener
processRestartNotification chan bool
isRuntimeRunning bool
logger *writeLogger
currentProcess *exec.Cmd
currentListener net.Listener
ProcessPath string
Logs []string
RuntimeCommands chan interface{}
OnCrashCallback func(sock net.Conn)
}
type writeLogger struct {