377832c705
* creates separate tally and rollup packages and writes skeleton for rollup * TODO add rollupDB and rawDB to rollup struct * TODO add rawDB to tally struct
16 lines
297 B
Go
16 lines
297 B
Go
// Copyright (C) 2018 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package tally
|
|
|
|
import (
|
|
"github.com/zeebo/errs"
|
|
monkit "gopkg.in/spacemonkeygo/monkit.v2"
|
|
)
|
|
|
|
// Error is a standard error class for this package.
|
|
var (
|
|
Error = errs.Class("tally error")
|
|
mon = monkit.Package()
|
|
)
|