mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-02 14:46:31 +00:00
c28f7cb29f
Initial part of #435
14 lines
241 B
Go
14 lines
241 B
Go
package syntax
|
|
|
|
import (
|
|
"github.com/gobwas/glob/syntax/ast"
|
|
"github.com/gobwas/glob/syntax/lexer"
|
|
)
|
|
|
|
func Parse(s string) (*ast.Node, error) {
|
|
return ast.Parse(lexer.NewLexer(s))
|
|
}
|
|
|
|
func Special(b byte) bool {
|
|
return lexer.Special(b)
|
|
}
|