summaryrefslogtreecommitdiffstats
path: root/versioner/versioner.go
blob: 9aedde30c7fbc82e7aba0f49d9774434d8b97d87 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2014 Jakob Borg and other contributors. All rights reserved.
// Use of this source code is governed by an MIT-style license that can be
// found in the LICENSE file.

package versioner

type Versioner interface {
	Archive(path string) error
}

var Factories = map[string]func(map[string]string) Versioner{}