mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-11-04 07:52:25 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package automemlimit
 | 
						|
 | 
						|
import (
 | 
						|
	"log/slog"
 | 
						|
 | 
						|
	"github.com/KimMachineGun/automemlimit/memlimit"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	memlimit.SetGoMemLimitWithOpts(
 | 
						|
		memlimit.WithLogger(slog.Default()),
 | 
						|
	)
 | 
						|
}
 |