Skip to content

Conversation

r10r
Copy link

@r10r r10r commented Apr 13, 2021

Hi,

I've added a function to parse a string intoCap.
I use it to look up capabilities by it's string value. e.g:

func (rt *Runtime) hasCapability(s string) bool {
    c, exist := capability.Parse(s)
    if !exist {
        rt.Log.Warn().Msgf("undefined capability %q", s)
        return false
    }   
    return rt.caps.Get(capability.EFFECTIVE, c)
}

It would be nice if you could merge this. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant