package cache type Cache interface { Get(key string) ([]byte, error) Set(key string, schema []byte) error }