20 lines
304 B
Go
20 lines
304 B
Go
package treasury
|
|
|
|
import "time"
|
|
|
|
type UserBinding struct {
|
|
TelegramUserID string
|
|
LedgerAccount string
|
|
}
|
|
|
|
type Config struct {
|
|
AllowedChats []string
|
|
Users []UserBinding
|
|
|
|
ExecutionDelay time.Duration
|
|
PollInterval time.Duration
|
|
|
|
MaxAmountPerOperation string
|
|
MaxDailyAmount string
|
|
}
|