NewGenerationer returns a struct for implementing blobserver.Generationer
(rootDir string)
| 36 | |
| 37 | // NewGenerationer returns a struct for implementing blobserver.Generationer |
| 38 | func NewGenerationer(rootDir string) *Generationer { |
| 39 | return &Generationer{rootDir} |
| 40 | } |
| 41 | |
| 42 | func (g Generationer) generationFile() string { |
| 43 | return filepath.Join(g.root, "GENERATION.dat") |
no outgoing calls
no test coverage detected