fix: remove unused dependencies
This commit was merged in pull request #134.
This commit is contained in:
@@ -36,18 +36,16 @@ type TransactionRecurring interface {
|
||||
}
|
||||
|
||||
type TransactionRecurringImpl struct {
|
||||
db *sqlx.DB
|
||||
clock Clock
|
||||
random Random
|
||||
settings *types.Settings
|
||||
db *sqlx.DB
|
||||
clock Clock
|
||||
random Random
|
||||
}
|
||||
|
||||
func NewTransactionRecurring(db *sqlx.DB, random Random, clock Clock, settings *types.Settings) TransactionRecurring {
|
||||
func NewTransactionRecurring(db *sqlx.DB, random Random, clock Clock) TransactionRecurring {
|
||||
return TransactionRecurringImpl{
|
||||
db: db,
|
||||
clock: clock,
|
||||
random: random,
|
||||
settings: settings,
|
||||
db: db,
|
||||
clock: clock,
|
||||
random: random,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user