mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	* Fix validate() function to handle errors in embedded anon structs * Implement webhook branch filter See #2025, #3998.
		
			
				
	
	
		
			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)
 | 
						|
}
 |