All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 50s
16 lines
205 B
Go
16 lines
205 B
Go
//go:build !linux && !windows && !solaris
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func writeProcessMetrics(w io.Writer) {
|
|
// TODO: implement it
|
|
}
|
|
|
|
func writeFDMetrics(w io.Writer) {
|
|
// TODO: implement it.
|
|
}
|