Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add function to parse Cap from string. #21

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

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