Update module path

This commit is contained in:
Lea Anthony
2020-09-02 19:47:37 +10:00
committed by Travis McLane
parent bdcb2fe810
commit 19d59bef51
76 changed files with 974 additions and 142 deletions

View File

@@ -4,8 +4,8 @@ import (
"os"
"testing"
"github.com/leaanthony/wailsv2/v2/internal/logger"
"github.com/leaanthony/wailsv2/v2/internal/servicebus"
"github.com/wailsapp/wails/v2/internal/logger"
"github.com/wailsapp/wails/v2/internal/servicebus"
)
func TestBrowserOpen(t *testing.T) {

View File

@@ -3,8 +3,8 @@ package goruntime
import (
"fmt"
"github.com/leaanthony/wailsv2/v2/internal/crypto"
"github.com/leaanthony/wailsv2/v2/internal/servicebus"
"github.com/wailsapp/wails/v2/internal/crypto"
"github.com/wailsapp/wails/v2/internal/servicebus"
)
// Dialog defines all Dialog related operations

View File

@@ -1,8 +1,8 @@
package goruntime
import (
"github.com/leaanthony/wailsv2/v2/internal/messagedispatcher/message"
"github.com/leaanthony/wailsv2/v2/internal/servicebus"
"github.com/wailsapp/wails/v2/internal/messagedispatcher/message"
"github.com/wailsapp/wails/v2/internal/servicebus"
)
// Events defines all events related operations

View File

@@ -1,6 +1,6 @@
package goruntime
import "github.com/leaanthony/wailsv2/v2/internal/servicebus"
import "github.com/wailsapp/wails/v2/internal/servicebus"
// Runtime is a means for the user to interact with the application at runtime
type Runtime struct {

View File

@@ -1,6 +1,8 @@
package goruntime
import "github.com/leaanthony/wailsv2/v2/internal/servicebus"
import (
"github.com/wailsapp/wails/v2/internal/servicebus"
)
// Window defines all Window related operations
type Window interface {