Files
webstory/pkg/webstory_service/webstory_service_test.go
T

15 lines
481 B
Go
Raw Normal View History

2026-03-24 23:16:22 -07:00
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)
}