mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-06 14:37:37 +03:00
table: Implement module.MultiTable for file, sql_query, sql_table and static
This commit is contained in:
parent
6d44617840
commit
6c5c5d10c4
7 changed files with 89 additions and 32 deletions
|
@ -123,6 +123,10 @@ func (s *SQLTable) Lookup(ctx context.Context, val string) (string, bool, error)
|
|||
return s.wrapped.Lookup(ctx, val)
|
||||
}
|
||||
|
||||
func (s *SQLTable) LookupMulti(ctx context.Context, val string) ([]string, error) {
|
||||
return s.wrapped.LookupMulti(ctx, val)
|
||||
}
|
||||
|
||||
func (s *SQLTable) Keys() ([]string, error) {
|
||||
return s.wrapped.Keys()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue