mirror of
https://github.com/matrix-org/dendrite.git
synced 2026-01-13 09:03:10 -06:00
12 lines
174 B
Go
12 lines
174 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.
|
|
}
|