File tree 8 files changed +12
-12
lines changed
frontend/src/components/LoadoutEditor
8 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 8
8
"runtime"
9
9
"strings"
10
10
11
+ rlbot "github.com/RLBot/go-interface"
12
+ "github.com/RLBot/go-interface/flat"
11
13
"github.com/ncruces/zenity"
12
- rlbot "github.com/swz-git/go-interface"
13
- "github.com/swz-git/go-interface/flat"
14
14
)
15
15
16
16
type RawReleaseInfo struct {
Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import toast from " svelte-5-french-toast" ;
3
- import { ExistingMatchBehavior } from " ../../../bindings/github.com/swz-git /go-interface/flat/models" ;
3
+ import { ExistingMatchBehavior } from " ../../../bindings/github.com/RLBot /go-interface/flat/models" ;
4
4
import {
5
5
App ,
6
6
LoadoutConfig ,
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ toolchain go1.23.6
6
6
7
7
require (
8
8
github.com/BurntSushi/toml v1.5.0
9
+ github.com/RLBot/go-interface v0.0.0-20250415214826-040d3d30ba7f
9
10
github.com/ncruces/zenity v0.10.14
10
- github.com/swz-git/go-interface v0.0.0-20250408205610-597122bc631d
11
11
github.com/ulikunitz/xz v0.5.12
12
12
github.com/wailsapp/mimetype v1.4.1
13
13
github.com/wailsapp/wails/v3 v3.0.0-alpha.9
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERo
7
7
github.com/Microsoft/go-winio v0.6.2 /go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU =
8
8
github.com/ProtonMail/go-crypto v1.1.6 h1:ZcV+Ropw6Qn0AX9brlQLAUXfqLBc7Bl+f/DmNxpLfdw =
9
9
github.com/ProtonMail/go-crypto v1.1.6 /go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE =
10
+ github.com/RLBot/go-interface v0.0.0-20250415214826-040d3d30ba7f h1:SEbN/466Lfjs/6rvHojmkmPKRq7gXLYJr/44GaQWKB8 =
11
+ github.com/RLBot/go-interface v0.0.0-20250415214826-040d3d30ba7f /go.mod h1:zogQvXLJKb2EQ4bb/PUH168VPwxBdzG1SSFJt9uJM5c =
10
12
github.com/adrg/xdg v0.5.3 h1:xRnxJXne7+oWDatRhR1JLnvuccuIeCoBu2rtuLqQB78 =
11
13
github.com/adrg/xdg v0.5.3 /go.mod h1:nlTsY+NNiCBGCK2tpm09vRqfVzrc2fLmXGpBLF0zlTQ =
12
14
github.com/akavel/rsrc v0.10.2 h1:Zxm8V5eI1hW4gGaYsJQUhxpjkENuG91ki8B4zCrvEsw =
@@ -112,8 +114,6 @@ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXf
112
114
github.com/stretchr/testify v1.4.0 /go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4 =
113
115
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA =
114
116
github.com/stretchr/testify v1.10.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
115
- github.com/swz-git/go-interface v0.0.0-20250408205610-597122bc631d h1:94jHwiJ/NGmXLTMgRMwuZimbn8tur1uM7VaIU5RBMMw =
116
- github.com/swz-git/go-interface v0.0.0-20250408205610-597122bc631d /go.mod h1:ftWbBHpnHCD6ZlBVPD/Nnv3aOdNxel6899LU55ZTGFs =
117
117
github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc =
118
118
github.com/ulikunitz/xz v0.5.12 /go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14 =
119
119
github.com/wailsapp/go-webview2 v1.0.21 h1:k3dtoZU4KCoN/AEIbWiPln3P2661GtA2oEgA2Pb+maA =
Original file line number Diff line number Diff line change 6
6
"path/filepath"
7
7
8
8
"github.com/BurntSushi/toml"
9
- rlbot "github.com/swz-git /go-interface"
10
- "github.com/swz-git /go-interface/flat"
9
+ rlbot "github.com/RLBot /go-interface"
10
+ "github.com/RLBot /go-interface/flat"
11
11
)
12
12
13
13
func (a * App ) SaveLoadoutToFile (basePath string , loadoutFile string , loadout LoadoutConfig ) error {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"sort"
11
11
12
12
"github.com/BurntSushi/toml"
13
- "github.com/swz-git /go-interface/flat"
13
+ "github.com/RLBot /go-interface/flat"
14
14
"github.com/wailsapp/mimetype"
15
15
)
16
16
Original file line number Diff line number Diff line change 9
9
"strings"
10
10
"time"
11
11
12
- rlbot "github.com/swz-git /go-interface"
13
- "github.com/swz-git /go-interface/flat"
12
+ rlbot "github.com/RLBot /go-interface"
13
+ "github.com/RLBot /go-interface/flat"
14
14
)
15
15
16
16
type RHostBot struct {
Original file line number Diff line number Diff line change 8
8
"sort"
9
9
10
10
"github.com/BurntSushi/toml"
11
- "github.com/swz-git /go-interface/flat"
11
+ "github.com/RLBot /go-interface/flat"
12
12
"github.com/wailsapp/mimetype"
13
13
)
14
14
You can’t perform that action at this time.
0 commit comments