From daceefe5481eb08035c0a73ef7febf6262c0ef3d Mon Sep 17 00:00:00 2001 From: tyler Date: Fri, 14 Jun 2024 13:49:03 -0400 Subject: [PATCH] Migrated from github --- v1/app.go | 10 +++++----- v1/go.mod | 6 +++--- v1/go.sum | 8 ++++---- v1/internal/chatbot/chatbot.go | 6 +++--- v1/internal/chatbot/rule.go | 2 +- v1/internal/chatbot/runner.go | 4 ++-- v1/internal/events/api.go | 2 +- v1/internal/events/chat.go | 2 +- v1/main.go | 2 +- v1/vendor/modules.txt | 12 ++++++------ .../tyler}/go-utils/LICENSE | 0 .../tyler}/go-utils/random/random.go | 0 .../tyler}/rumble-livestream-lib-go/.gitignore | 0 .../tyler}/rumble-livestream-lib-go/LICENSE | 0 .../tyler}/rumble-livestream-lib-go/README.md | 0 .../tyler}/rumble-livestream-lib-go/chat.go | 2 +- .../tyler}/rumble-livestream-lib-go/client.go | 0 .../tyler}/rumble-livestream-lib-go/error.go | 0 .../tyler}/rumble-livestream-lib-go/livestream.go | 0 .../tyler}/rumble-livestream-lib-go/md5.js.go | 0 v1/wails.json | 2 +- 21 files changed, 29 insertions(+), 29 deletions(-) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/go-utils/LICENSE (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/go-utils/random/random.go (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/.gitignore (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/LICENSE (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/README.md (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/chat.go (99%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/client.go (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/error.go (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/livestream.go (100%) rename v1/vendor/{github.com/tylertravisty => travisty.io/tyler}/rumble-livestream-lib-go/md5.js.go (100%) diff --git a/v1/app.go b/v1/app.go index e427f16..c4843f4 100644 --- a/v1/app.go +++ b/v1/app.go @@ -12,12 +12,12 @@ import ( "sync" "time" - "github.com/tylertravisty/rum-goggles/v1/internal/chatbot" - "github.com/tylertravisty/rum-goggles/v1/internal/config" - "github.com/tylertravisty/rum-goggles/v1/internal/events" - "github.com/tylertravisty/rum-goggles/v1/internal/models" - rumblelivestreamlib "github.com/tylertravisty/rumble-livestream-lib-go" "github.com/wailsapp/wails/v2/pkg/runtime" + "travisty.io/tyler/rum-goggles/v1/internal/chatbot" + "travisty.io/tyler/rum-goggles/v1/internal/config" + "travisty.io/tyler/rum-goggles/v1/internal/events" + "travisty.io/tyler/rum-goggles/v1/internal/models" + rumblelivestreamlib "travisty.io/tyler/rumble-livestream-lib-go" _ "github.com/mattn/go-sqlite3" ) diff --git a/v1/go.mod b/v1/go.mod index 4b885ea..8ecca67 100644 --- a/v1/go.mod +++ b/v1/go.mod @@ -1,4 +1,4 @@ -module github.com/tylertravisty/rum-goggles/v1 +module travisty.io/tyler/rum-goggles/v1 go 1.21 @@ -6,8 +6,8 @@ toolchain go1.22.0 require ( github.com/mattn/go-sqlite3 v1.14.22 - github.com/tylertravisty/rumble-livestream-lib-go v0.9.1 github.com/wailsapp/wails/v2 v2.8.1 + travisty.io/tyler/rumble-livestream-lib-go v0.0.0-20240614172924-f35ec00a1690 ) require ( @@ -31,7 +31,6 @@ require ( github.com/robertkrimen/otto v0.3.0 // indirect github.com/samber/lo v1.38.1 // indirect github.com/tkrajina/go-reflector v0.5.6 // indirect - github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.2 // indirect github.com/wailsapp/go-webview2 v1.0.10 // indirect @@ -43,6 +42,7 @@ require ( golang.org/x/text v0.14.0 // indirect gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect gopkg.in/sourcemap.v1 v1.0.5 // indirect + travisty.io/tyler/go-utils v0.0.0-20240614172648-00b0b1a557b4 // indirect ) // replace github.com/wailsapp/wails/v2 v2.8.0 => /home/tyler/dev/go/pkg/mod diff --git a/v1/go.sum b/v1/go.sum index e1f7d78..c171e5c 100644 --- a/v1/go.sum +++ b/v1/go.sum @@ -58,10 +58,6 @@ github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcU github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/tkrajina/go-reflector v0.5.6 h1:hKQ0gyocG7vgMD2M3dRlYN6WBBOmdoOzJ6njQSepKdE= github.com/tkrajina/go-reflector v0.5.6/go.mod h1:ECbqLgccecY5kPmPmXg1MrHW585yMcDkVl6IvJe64T4= -github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909 h1:xrjIFqzGQXlCrCdMPpW6+SodGFSlrQ3ZNUCr3f5tF1g= -github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909/go.mod h1:2W31Jhs9YSy7y500wsCOW0bcamGi9foQV1CKrfvfTxk= -github.com/tylertravisty/rumble-livestream-lib-go v0.9.1 h1:5qIqq0f/yCEq8n1v2cPxEpDJQoirK2aBnd4dUSGWP/I= -github.com/tylertravisty/rumble-livestream-lib-go v0.9.1/go.mod h1:Odkqvsn+2eoWV3ePcj257Ga0bdOqV4JBTfOJcQ+Sqf8= github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= @@ -110,3 +106,7 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +travisty.io/tyler/go-utils v0.0.0-20240614172648-00b0b1a557b4 h1:/InkkmR3O6lh63ckLJe14k1DRB6RuOZJv5TpfxGVRKQ= +travisty.io/tyler/go-utils v0.0.0-20240614172648-00b0b1a557b4/go.mod h1:2inG89XtlVnppctG2WnKir4mWWN0zbF/PB9m1HXdTYI= +travisty.io/tyler/rumble-livestream-lib-go v0.0.0-20240614172924-f35ec00a1690 h1:j6qZCouGr8+eDKnK4T5qGfwqbwfq8G06gTv25zbKfgY= +travisty.io/tyler/rumble-livestream-lib-go v0.0.0-20240614172924-f35ec00a1690/go.mod h1:kawNZvHMCKVQ18Qt3jayiUGsHfH2tlovr65GXzVXVA0= diff --git a/v1/internal/chatbot/chatbot.go b/v1/internal/chatbot/chatbot.go index c80551a..f234ae0 100644 --- a/v1/internal/chatbot/chatbot.go +++ b/v1/internal/chatbot/chatbot.go @@ -10,10 +10,10 @@ import ( "sync" "time" - "github.com/tylertravisty/rum-goggles/v1/internal/events" - "github.com/tylertravisty/rum-goggles/v1/internal/models" - rumblelivestreamlib "github.com/tylertravisty/rumble-livestream-lib-go" "github.com/wailsapp/wails/v2/pkg/runtime" + "travisty.io/tyler/rum-goggles/v1/internal/events" + "travisty.io/tyler/rum-goggles/v1/internal/models" + rumblelivestreamlib "travisty.io/tyler/rumble-livestream-lib-go" ) type user struct { diff --git a/v1/internal/chatbot/rule.go b/v1/internal/chatbot/rule.go index eeb4b3a..65ce606 100644 --- a/v1/internal/chatbot/rule.go +++ b/v1/internal/chatbot/rule.go @@ -13,7 +13,7 @@ import ( "strings" "time" - "github.com/tylertravisty/rum-goggles/v1/internal/models" + "travisty.io/tyler/rum-goggles/v1/internal/models" ) const ( diff --git a/v1/internal/chatbot/runner.go b/v1/internal/chatbot/runner.go index 0c79d8d..41d3a18 100644 --- a/v1/internal/chatbot/runner.go +++ b/v1/internal/chatbot/runner.go @@ -8,9 +8,9 @@ import ( "sync" "time" - "github.com/tylertravisty/rum-goggles/v1/internal/events" - rumblelivestreamlib "github.com/tylertravisty/rumble-livestream-lib-go" "github.com/wailsapp/wails/v2/pkg/runtime" + "travisty.io/tyler/rum-goggles/v1/internal/events" + rumblelivestreamlib "travisty.io/tyler/rumble-livestream-lib-go" ) type Runner struct { diff --git a/v1/internal/events/api.go b/v1/internal/events/api.go index 1fbefa8..2108ea4 100644 --- a/v1/internal/events/api.go +++ b/v1/internal/events/api.go @@ -7,7 +7,7 @@ import ( "sync" "time" - rumblelivestreamlib "github.com/tylertravisty/rumble-livestream-lib-go" + rumblelivestreamlib "travisty.io/tyler/rumble-livestream-lib-go" ) type Api struct { diff --git a/v1/internal/events/chat.go b/v1/internal/events/chat.go index 9b8b691..6b4609a 100644 --- a/v1/internal/events/chat.go +++ b/v1/internal/events/chat.go @@ -7,7 +7,7 @@ import ( "sync" "time" - rumblelivestreamlib "github.com/tylertravisty/rumble-livestream-lib-go" + rumblelivestreamlib "travisty.io/tyler/rumble-livestream-lib-go" ) type Chat struct { diff --git a/v1/main.go b/v1/main.go index 7bc52ba..e00e15d 100644 --- a/v1/main.go +++ b/v1/main.go @@ -5,10 +5,10 @@ import ( "net/http" "strings" - "github.com/tylertravisty/rum-goggles/v1/internal/config" "github.com/wailsapp/wails/v2" "github.com/wailsapp/wails/v2/pkg/options" "github.com/wailsapp/wails/v2/pkg/options/assetserver" + "travisty.io/tyler/rum-goggles/v1/internal/config" ) //go:embed all:frontend/dist diff --git a/v1/vendor/modules.txt b/v1/vendor/modules.txt index dacf42e..3e8cfa9 100644 --- a/v1/vendor/modules.txt +++ b/v1/vendor/modules.txt @@ -74,12 +74,6 @@ github.com/samber/lo # github.com/tkrajina/go-reflector v0.5.6 ## explicit; go 1.17 github.com/tkrajina/go-reflector/reflector -# github.com/tylertravisty/go-utils v0.0.0-20230524204414-6893ae548909 -## explicit; go 1.16 -github.com/tylertravisty/go-utils/random -# github.com/tylertravisty/rumble-livestream-lib-go v0.9.1 -## explicit; go 1.19 -github.com/tylertravisty/rumble-livestream-lib-go # github.com/valyala/bytebufferpool v1.0.0 ## explicit github.com/valyala/bytebufferpool @@ -189,3 +183,9 @@ gopkg.in/cenkalti/backoff.v1 ## explicit gopkg.in/sourcemap.v1 gopkg.in/sourcemap.v1/base64vlq +# travisty.io/tyler/go-utils v0.0.0-20240614172648-00b0b1a557b4 +## explicit; go 1.16 +travisty.io/tyler/go-utils/random +# travisty.io/tyler/rumble-livestream-lib-go v0.0.0-20240614172924-f35ec00a1690 +## explicit; go 1.19 +travisty.io/tyler/rumble-livestream-lib-go diff --git a/v1/vendor/github.com/tylertravisty/go-utils/LICENSE b/v1/vendor/travisty.io/tyler/go-utils/LICENSE similarity index 100% rename from v1/vendor/github.com/tylertravisty/go-utils/LICENSE rename to v1/vendor/travisty.io/tyler/go-utils/LICENSE diff --git a/v1/vendor/github.com/tylertravisty/go-utils/random/random.go b/v1/vendor/travisty.io/tyler/go-utils/random/random.go similarity index 100% rename from v1/vendor/github.com/tylertravisty/go-utils/random/random.go rename to v1/vendor/travisty.io/tyler/go-utils/random/random.go diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/.gitignore b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/.gitignore similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/.gitignore rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/.gitignore diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/LICENSE b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/LICENSE similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/LICENSE rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/LICENSE diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/README.md b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/README.md similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/README.md rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/README.md diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/chat.go similarity index 99% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/chat.go index 9d66b94..1980c93 100644 --- a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/chat.go +++ b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/chat.go @@ -13,9 +13,9 @@ import ( "time" "github.com/r3labs/sse/v2" - "github.com/tylertravisty/go-utils/random" "golang.org/x/net/html" "gopkg.in/cenkalti/backoff.v1" + "travisty.io/tyler/go-utils/random" ) const ( diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/client.go b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/client.go similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/client.go rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/client.go diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/error.go b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/error.go similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/error.go rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/error.go diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/livestream.go b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/livestream.go similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/livestream.go rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/livestream.go diff --git a/v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/md5.js.go b/v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/md5.js.go similarity index 100% rename from v1/vendor/github.com/tylertravisty/rumble-livestream-lib-go/md5.js.go rename to v1/vendor/travisty.io/tyler/rumble-livestream-lib-go/md5.js.go diff --git a/v1/wails.json b/v1/wails.json index 74a4910..10a070f 100644 --- a/v1/wails.json +++ b/v1/wails.json @@ -8,6 +8,6 @@ "frontend:dev:serverUrl": "auto", "author": { "name": "tyler", - "email": "tylertravisty@users.noreply.github.com" + "email": "tyler@noreply.travisty.io" } }