config: add reva required config

This commit is contained in:
A.Unger
2021-08-12 11:18:55 +02:00
parent 8a80b990a8
commit 778ad717df
16 changed files with 77 additions and 19 deletions
+8
View File
@@ -0,0 +1,8 @@
package config
func TracingService(enabled bool) string {
if enabled {
return "opentelemetry"
}
return ""
}