forked from deblan/database-anonymizer
add app
This commit is contained in:
parent
3e1f057064
commit
1398fd28e6
2 changed files with 32 additions and 15 deletions
17
app/app.go
Normal file
17
app/app.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue