This commit is contained in:
crusader 2017-11-27 19:13:19 +09:00
parent f3b7cb5bdf
commit 174d56bd10

View File

@ -2,6 +2,10 @@ package context
import "sync"
type Attributer interface {
Attributes() Attributes
}
type Attributes interface {
initialize()
Set(key string, value interface{})