We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f42445 + e5115c3 commit 1a96db4Copy full SHA for 1a96db4
1 file changed
services/content/service.go
@@ -70,13 +70,13 @@ func init() {
70
if err != nil {
71
return nil, err
72
}
73
- return newService(cs.(content.Store)), nil
+ return NewService(cs.(content.Store)), nil
74
},
75
})
76
77
78
-// newService returns the content GRPC server
79
-func newService(cs content.Store) api.ContentServer {
+// NewService returns the content GRPC server
+func NewService(cs content.Store) api.ContentServer {
80
return &service{store: cs}
81
82
0 commit comments