Fix lint issue
Some checks failed
CI / Test (1.24) (push) Failing after -24m33s
CI / Test (1.25) (push) Failing after -24m19s
CI / Build (push) Successful in -25m58s
CI / Lint (push) Successful in -25m39s

This commit is contained in:
2025-12-28 12:19:04 +02:00
parent d52b9cdc14
commit e61204cb3c

View File

@@ -12,14 +12,6 @@ import (
"git.warky.dev/wdevs/relspecgo/pkg/readers"
)
// min returns the minimum of two integers
func min(a, b int) int {
if a < b {
return a
}
return b
}
// Reader implements the readers.Reader interface for Drizzle schema format
type Reader struct {
options *readers.ReaderOptions