This commit is contained in:
Simon Vieille 2024-03-16 15:23:47 +01:00
commit 1398fd28e6
Signed by: deblan
GPG key ID: 579388D585F70417
2 changed files with 32 additions and 15 deletions

17
app/app.go Normal file
View file

@ -0,0 +1,17 @@
package app
import (
"database/sql"
"fmt"
"gitnet.fr/deblan/database-anonymizer/config"
)
type App struct {
}
func (a *App) Run(db *sql.DB, schema config.SchemaConfig) error {
fmt.Printf("%+v\n", db)
fmt.Printf("%+v\n", schema)
return nil
}