mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
15 lines
241 B
Go
15 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)
|
||
|
}
|