15 lines
481 B
Go
15 lines
481 B
Go
package webstory_service
|
|
|
|
import (
|
|
"testing"
|
|
|
|
v1 "git.tipsy.codes/charles/webstory/pkg/api/webstory/v1"
|
|
)
|
|
|
|
// Test_WebstoryServiceServer_ImplementsInterface ensures that WebstoryServiceServer
|
|
// implements the v1.WebstoryServiceServer interface. This is a compile-time check
|
|
// that will fail if the interface changes or if methods are missing.
|
|
func Test_WebstoryServiceServer_ImplementsInterface(t *testing.T) {
|
|
var _ v1.WebstoryServiceServer = (*WebstoryServiceServer)(nil)
|
|
}
|