mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-13 17:13:10 -06:00
12 lines
175 B
Go
12 lines
175 B
Go
//go:build unix
|
|
// +build unix
|
|
|
|
package base
|
|
|
|
// OS import to automatically raise file descriptor limit.
|
|
import _ "os"
|
|
|
|
func platformSanityChecks() {
|
|
// Nothing to do yet.
|
|
}
|