* Implementation for calculating language statistics Impement saving code language statistics to database Implement rendering langauge stats Add primary laguage to show in repository list Implement repository stats indexer queue Add indexer test Refactor to use queue module * Do not timeout for queues
		
			
				
	
	
		
			18 lines
		
	
	
		
			234 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			234 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !oniguruma
 | |
| 
 | |
| package regex
 | |
| 
 | |
| import (
 | |
| 	"regexp"
 | |
| )
 | |
| 
 | |
| type EnryRegexp = *regexp.Regexp
 | |
| 
 | |
| func MustCompile(str string) EnryRegexp {
 | |
| 	return regexp.MustCompile(str)
 | |
| }
 | |
| 
 | |
| func QuoteMeta(s string) string {
 | |
| 	return regexp.QuoteMeta(s)
 | |
| }
 |