Register the mock driver

This commit is contained in:
Justin Li 2013-11-30 23:16:31 -05:00
parent 986675cc4d
commit 9c62ca4547

View file

@ -22,3 +22,8 @@ func (d *driver) New(conf *config.DataStore) tracker.Pool {
whitelist: make(map[string]bool),
}
}
func init() {
tracker.Register("mock", &driver{})
}