We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79965ab commit ac0f984Copy full SHA for ac0f984
2 files changed
internal/driver/config.go
@@ -0,0 +1,6 @@
1
+package driver
2
+
3
+type Config struct {
4
+ Name string
5
+ LocalSort bool
6
+}
internal/driver/driver.go
@@ -32,4 +32,5 @@ type Other interface {
32
Drop(ctx context.Context) error
33
// GetAccount transform additional field to string and assign to account's addition
34
GetAccount() model.Account
35
+ Config() Config
36
}
0 commit comments