mirror of
https://github.com/taigrr/wails.git
synced 2026-04-17 04:05:12 -07:00
Update module path
This commit is contained in:
committed by
Travis McLane
parent
bdcb2fe810
commit
19d59bef51
@@ -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) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user