versioner.go 324 B

1234567891011
  1. // Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
  2. // Use of this source code is governed by an MIT-style license that can be
  3. // found in the LICENSE file.
  4. package versioner
  5. type Versioner interface {
  6. Archive(path string) error
  7. }
  8. var Factories = map[string]func(map[string]string) Versioner{}