Work out file reading and writing

This commit is contained in:
2025-03-27 22:02:36 +01:00
parent aac29a4074
commit 867b188718
3 changed files with 39 additions and 29 deletions

View File

@@ -31,15 +31,6 @@ type Processor interface {
FromLua(L *lua.LState) (interface{}, error)
}
// ModificationRecord tracks a single value modification
type ModificationRecord struct {
File string
OldValue string
NewValue string
Operation string
Context string
}
func NewLuaState() (*lua.LState, error) {
L := lua.NewState()
// defer L.Close()