Single endpoint for web+ui (Issue #4). Migrated to modern protobuf+grpc.

This commit is contained in:
jamesread
2021-05-24 22:02:21 +01:00
parent d4e6a7475d
commit 37b9e2d66f
16 changed files with 256 additions and 183 deletions
+12
View File
@@ -0,0 +1,12 @@
package httpservers
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestGetWebuiDir(t *testing.T) {
dir := findWebuiDir()
assert.Equal(t, "./webui", dir, "Finding the webui dir")
}