Rename project to "cook" and ditch loading fgrom args, now files exclusively

This commit is contained in:
2025-04-01 13:32:55 +02:00
parent 05bc31aa90
commit 0935b6e79f
11 changed files with 33 additions and 65 deletions

View File

@@ -6,7 +6,7 @@ import (
lua "github.com/yuin/gopher-lua"
"modify/logger"
"cook/logger"
)
// Maybe we make this an interface again for the shits and giggles

View File

@@ -9,8 +9,8 @@ import (
lua "github.com/yuin/gopher-lua"
"modify/logger"
"modify/utils"
"cook/logger"
"cook/utils"
)
type CaptureGroup struct {

View File

@@ -2,8 +2,8 @@ package processor
import (
"bytes"
"cook/utils"
"io"
"modify/utils"
"os"
"regexp"
"strings"

View File

@@ -2,7 +2,7 @@ package processor
import (
"io"
"modify/logger"
"cook/logger"
"os"
)