mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 11:52:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			173 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !linux,!darwin,!windows,!freebsd,!dragonfly,!netbsd,!openbsd
 | |
| 
 | |
| package memory
 | |
| 
 | |
| func sysTotalMemory() uint64 {
 | |
| 	return 0
 | |
| }
 | |
| func sysFreeMemory() uint64 {
 | |
| 	return 0
 | |
| }
 |