feature: Add profiling documentation for backends based on BackendUtil.

This commit is contained in:
Tera << 8 2025-01-10 16:23:26 -05:00
parent 356cfb8dca
commit 0efda4b283
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37
4 changed files with 112 additions and 1 deletions

View file

@ -0,0 +1,9 @@
//go:build !debug
package backendutil
var endProfileFunc func()
func configureAndLaunchBackgroundProfilingTasks() error {
return nil
}