Skip to content

Commit 1a96db4

Browse files
authored
Merge pull request #2559 from crosbymichael/exp-content
Export content service New
2 parents 3f42445 + e5115c3 commit 1a96db4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

services/content/service.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ func init() {
7070
if err != nil {
7171
return nil, err
7272
}
73-
return newService(cs.(content.Store)), nil
73+
return NewService(cs.(content.Store)), nil
7474
},
7575
})
7676
}
7777

78-
// newService returns the content GRPC server
79-
func newService(cs content.Store) api.ContentServer {
78+
// NewService returns the content GRPC server
79+
func NewService(cs content.Store) api.ContentServer {
8080
return &service{store: cs}
8181
}
8282

0 commit comments

Comments
 (0)