Skip to content
Snippets Groups Projects
Commit 7f101374 authored by Markin Igor's avatar Markin Igor
Browse files

Fix library path.

parent 71e36762
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !4. Comments created here will be created in the context of that merge request.
package main
import "fmt"
import (
"code.vereign.com/code/vcl/test"
"fmt"
)
func main() {
fmt.Println("Hello, world3a.")
result := test.GetClientJsLibrary("https://test.org")
fmt.Println("Hello, world.")
fmt.Println(result)
}
......@@ -7,7 +7,7 @@ import (
)
func GetClientJsLibrary(iframeUrl string) string {
dat, err := ioutil.ReadFile("jslibs/viamapi-client.js")
dat, err := ioutil.ReadFile("./javascript/dist/viamapi-client.js")
if err != nil {
fmt.Println(err.Error())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment