mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-11 20:12:45 +00: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()),
|
|
)
|
|
}
|