cloudfoundry/stratos

View on GitHub
src/jetstream/repository/goose-db-version/goose-db-version.go

Summary

Maintainability
A
0 mins
Test Coverage
package goosedbversion

import (
    "github.com/cloudfoundry-incubator/stratos/src/jetstream/repository/interfaces"
)

// Repository - the repository required to talk to this table of data
type Repository interface {
    GetCurrentVersion() (interfaces.GooseDBVersionRecord, error)
    List() ([]*interfaces.GooseDBVersionRecord, error)
}