mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 05:02:25 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			201 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package rifs
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
	"path"
 | 
						|
)
 | 
						|
 | 
						|
var (
 | 
						|
	appPath string
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	goPath := os.Getenv("GOPATH")
 | 
						|
	appPath = path.Join(goPath, "src", "github.com", "dsoprea", "go-utility", "filesystem")
 | 
						|
}
 |