buildr/modules/state/init.go
Peter fee941a0e4
feat(state): introduce SQLite based state store
Allow modules to keep a state of their latest execution and skp if not necessary
2023-05-02 18:44:47 +02:00

13 lines
156 B
Go

package state
import (
"database/sql"
"entgo.io/ent/dialect"
"modernc.org/sqlite"
)
func init() {
sql.Register(dialect.SQLite, new(sqlite.Driver))
}