summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
Diffstat (limited to 'pkg')
-rw-r--r--pkg/backend/api.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/backend/api.go b/pkg/backend/api.go
index a8d16a3..d422bf3 100644
--- a/pkg/backend/api.go
+++ b/pkg/backend/api.go
@@ -145,16 +145,6 @@ func EnableWebAPI(port string) {
go enableWebAPI(intPort)
}
-/* these two are a bit redundant since we already add them to ctx. however, we
- want to have them available before everything else, to be able to parse cli
- arguments. In the long run, we probably want to move all vendoring to qt, so
- this probably should not live in the backend, see #326*/
-
func GetVersion() *C.char {
return C.CString(version.VERSION)
}
-
-func GetAppName() *C.char {
- p := bitmask.GetConfiguredProvider()
- return C.CString(p.AppName)
-}