mirror of
https://github.com/foomo/contentserver.git
synced 2025-10-16 12:25:44 +00:00
13 lines
245 B
Go
13 lines
245 B
Go
package repo
|
|
|
|
import (
|
|
"github.com/foomo/contentserver/content"
|
|
)
|
|
|
|
// Dimension dimension in a repo
|
|
type Dimension struct {
|
|
Directory map[string]*content.RepoNode
|
|
URIDirectory map[string]*content.RepoNode
|
|
Node *content.RepoNode
|
|
}
|