blob: 9e31637a081800fc1f43c73a561c5e9ecd1e7415 (
plain) (
tree)
|
|
package bug
import "time"
type OperationType int
const (
_ OperationType = iota
CreateOp
SetTitleOp
AddCommentOp
SetStatusOp
LabelChangeOp
)
type Operation interface {
OpType() OperationType
Time() time.Time
Apply(snapshot Snapshot) Snapshot
}
type OpBase struct {
OperationType OperationType
Author Person
UnixTime int64
}
func NewOpBase(opType OperationType, author Person) OpBase {
return OpBase{
OperationType: opType,
Author: author,
UnixTime: time.Now().Unix(),
}
}
func (op OpBase) OpType() OperationType {
return op.OperationType
}
func (op OpBase) Time() time.Time {
return time.Unix(op.UnixTime, 0)
}
|