12 lines
191 B
Go
12 lines
191 B
Go
package config
|
|
|
|
func (c *Config) GetAccountByMonobankId(q string) ConfigAccount {
|
|
for _, row := range c.Accounts {
|
|
if row.MonobankId == q {
|
|
return row
|
|
}
|
|
}
|
|
|
|
return ConfigAccount{}
|
|
}
|