Split up types

This commit is contained in:
Matthew Dillon 2015-10-01 14:18:17 -07:00
parent 1bff626805
commit 4f3b4ec4bf
9 changed files with 245 additions and 211 deletions

5
types/entity.go Normal file
View file

@ -0,0 +1,5 @@
package types
type Entity interface {
Marshal() ([]byte, error)
}