init
This commit is contained in:
24
pkg/readers/reader.go
Normal file
24
pkg/readers/reader.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package readers
|
||||
|
||||
import (
|
||||
"git.warky.dev/wdevs/relspecgo/pkg/models"
|
||||
)
|
||||
|
||||
// Reader defines the interface for reading database specifications
|
||||
// from various input formats
|
||||
type Reader interface {
|
||||
// Read reads and parses the input, returning a Database model
|
||||
Read() (*models.Database, error)
|
||||
}
|
||||
|
||||
// ReaderOptions contains common options for readers
|
||||
type ReaderOptions struct {
|
||||
// FilePath is the path to the input file (if applicable)
|
||||
FilePath string
|
||||
|
||||
// ConnectionString is the database connection string (for DB readers)
|
||||
ConnectionString string
|
||||
|
||||
// Additional options can be added here as needed
|
||||
Metadata map[string]interface{}
|
||||
}
|
||||
Reference in New Issue
Block a user