table: Implement module.MultiTable for file, sql_query, sql_table and static

This commit is contained in:
fox.cpp 2021-07-11 18:54:41 +03:00
parent 6d44617840
commit 6c5c5d10c4
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
7 changed files with 89 additions and 32 deletions

View file

@ -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()
}