cloudfoundry/stratos

View on GitHub
src/jetstream/repository/interfaces/store.go

Summary

Maintainability
A
0 mins
Test Coverage
package interfaces

// StoreFactory is used to obtain interfaces for accessing the store
type StoreFactory interface {
    EndpointStore() (EndpointRepository, error)
    TokenStore() (TokenRepository, error)
}