blob: 878312d608978a497ceb17bc6fadb5f6269ba989 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package automemlimit
import (
"log/slog"
"github.com/KimMachineGun/automemlimit/memlimit"
)
func init() {
memlimit.SetGoMemLimitWithOpts(
memlimit.WithLogger(slog.Default()),
)
}
|