Merge pull request #20 from owncloud/align-project-structure

This commit is contained in:
Alex Unger
2020-04-16 09:28:50 +02:00
committed by GitHub
4 changed files with 1 additions and 7 deletions

View File

@@ -25,9 +25,3 @@ type Manager interface {
// List all records
List() ([]*proto.Record, error)
}
// Record is an entry in the account storage
type Record struct {
Key string
Value []byte
}

View File

@@ -8,7 +8,7 @@ import (
"github.com/micro/cli/v2"
"github.com/oklog/run"
"github.com/owncloud/ocis-accounts/pkg/config"
"github.com/owncloud/ocis-accounts/pkg/micro/grpc"
"github.com/owncloud/ocis-accounts/pkg/server/grpc"
oclog "github.com/owncloud/ocis-pkg/v2/log"
)