14 lines
168 B
Go
14 lines
168 B
Go
package query
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func (s *Service) Test(ctx context.Context, filters Test) (string, error) {
|
|
// TODO
|
|
// Sync doc
|
|
// Run test
|
|
|
|
return "", nil
|
|
}
|