package iam // Cap is an access capability. type Cap string // NewCap creates a Cap value. func NewCap(s string) Cap { return Cap(s) }