mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
406 B
16 lines
406 B
//go:build constraint
|
|
|
|
package search
|
|
|
|
import "github.com/rocboss/paopao-ce/internal/core"
|
|
|
|
var (
|
|
_ core.TweetSearchService = (*bridgeTweetSearchServant)(nil)
|
|
|
|
_ core.TweetSearchService = (*meiliTweetSearchServant)(nil)
|
|
_ core.VersionInfo = (*meiliTweetSearchServant)(nil)
|
|
|
|
_ core.TweetSearchService = (*zincTweetSearchServant)(nil)
|
|
_ core.VersionInfo = (*zincTweetSearchServant)(nil)
|
|
)
|