From 98bf2c393bc72f38e588b76940e563814abb3659 Mon Sep 17 00:00:00 2001 From: Vladimir Hodakov Date: Sat, 19 May 2018 12:14:25 +0400 Subject: [PATCH] Move import path to Github --- README.md | 2 +- cmd/i2_bot/i2_bot.go | 34 +++++++++--------- lib/appcontext/appcontext.go | 36 +++++++++---------- lib/broadcaster/broadcaster.go | 2 +- .../broadcasterinterface.go | 2 +- lib/broadcaster/exported.go | 4 +-- lib/broadcaster/responders.go | 2 +- lib/broadcaster/sender.go | 4 +-- .../chatterinterface/chatterinterface.go | 2 +- lib/chatter/exported.go | 4 +-- lib/chatter/restricters.go | 2 +- lib/connections/connections.go | 2 +- lib/datacache/chats.go | 2 +- .../datacacheinterface/datacacheinterface.go | 4 +-- lib/datacache/elements.go | 4 +-- lib/datacache/exported.go | 8 ++--- lib/datacache/leagues.go | 4 +-- lib/datacache/levels.go | 4 +-- lib/datacache/locations.go | 4 +-- lib/datacache/players.go | 2 +- lib/datacache/pokememes.go | 4 +-- lib/datacache/profiles.go | 2 +- lib/datacache/squads.go | 2 +- lib/datacache/tournament_reports.go | 2 +- lib/datacache/weapons.go | 4 +-- lib/dbmapping/players.go | 2 +- lib/forwarder/exported.go | 4 +-- lib/forwarder/forwarder.go | 2 +- .../forwarderinterface/forwarderinterface.go | 2 +- lib/migrations/exported.go | 4 +-- lib/orders/exported.go | 4 +-- lib/orders/getters.go | 2 +- lib/orders/orders.go | 2 +- lib/orders/ordersinterface/ordersinterface.go | 2 +- lib/pinner/exported.go | 4 +-- lib/pinner/pinner.go | 2 +- lib/pokedexer/exported.go | 4 +-- lib/pokedexer/getters.go | 2 +- lib/pokedexer/parsers.go | 2 +- lib/pokedexer/pokedexer.go | 2 +- .../pokedexerinterface/pokedexerinterface.go | 2 +- lib/pokedexer/responders.go | 2 +- lib/reminder/exported.go | 4 +-- lib/reminder/reminder.go | 2 +- .../reminderinterface/reminderinterface.go | 2 +- lib/reminder/responders.go | 2 +- lib/reminder/sender.go | 2 +- lib/reminder/updaters.go | 2 +- lib/router/exported.go | 2 +- lib/router/group_request.go | 2 +- lib/router/private_request.go | 2 +- lib/sender/exported.go | 4 +-- lib/squader/exported.go | 4 +-- lib/squader/responders.go | 2 +- lib/squader/squader.go | 2 +- .../squaderinterface/squaderinterface.go | 2 +- lib/statistics/exported.go | 4 +-- lib/statistics/squads.go | 2 +- .../statisticsinterface/statisticinterface.go | 2 +- lib/statistics/top.go | 2 +- lib/talkers/easter.go | 2 +- lib/talkers/errors.go | 2 +- lib/talkers/exported.go | 4 +-- lib/talkers/help.go | 6 ++-- .../talkersinterface/talkersinterface.go | 2 +- lib/users/exported.go | 4 +-- lib/users/getters.go | 2 +- lib/users/parsers.go | 2 +- lib/users/responders.go | 2 +- lib/users/users.go | 2 +- lib/users/usersinterface/usersinterface.go | 2 +- lib/welcomer/exported.go | 4 +-- lib/welcomer/responders.go | 2 +- .../welcomerinterface/welcomerinterface.go | 2 +- 74 files changed, 134 insertions(+), 134 deletions(-) diff --git a/README.md b/README.md index 44cf5c2..c7dfad1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # i2_bot: бот лиги Инстинкт игры @PokememBroBot -[![Go Report Card](https://goreportcard.com/badge/source.wtfteam.pro/i2_bot/i2_bot)](https://goreportcard.com/report/source.wtfteam.pro/i2_bot/i2_bot) +[![Go Report Card](https://goreportcard.com/badge/github.com/fat0troll/i2_bot)](https://goreportcard.com/report/github.com/fat0troll/i2_bot) Для запуска нужен правильный ``config.yml``. Управление зависимостями осуществляет [dep](https://github.com/golang/dep). diff --git a/cmd/i2_bot/i2_bot.go b/cmd/i2_bot/i2_bot.go index 3bc6d0e..03aa397 100644 --- a/cmd/i2_bot/i2_bot.go +++ b/cmd/i2_bot/i2_bot.go @@ -4,23 +4,23 @@ package main import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/broadcaster" - "source.wtfteam.pro/i2_bot/i2_bot/lib/chatter" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datacache" - "source.wtfteam.pro/i2_bot/i2_bot/lib/forwarder" - "source.wtfteam.pro/i2_bot/i2_bot/lib/migrations" - "source.wtfteam.pro/i2_bot/i2_bot/lib/orders" - "source.wtfteam.pro/i2_bot/i2_bot/lib/pinner" - "source.wtfteam.pro/i2_bot/i2_bot/lib/pokedexer" - "source.wtfteam.pro/i2_bot/i2_bot/lib/reminder" - "source.wtfteam.pro/i2_bot/i2_bot/lib/router" - "source.wtfteam.pro/i2_bot/i2_bot/lib/sender" - "source.wtfteam.pro/i2_bot/i2_bot/lib/squader" - "source.wtfteam.pro/i2_bot/i2_bot/lib/statistics" - "source.wtfteam.pro/i2_bot/i2_bot/lib/talkers" - "source.wtfteam.pro/i2_bot/i2_bot/lib/users" - "source.wtfteam.pro/i2_bot/i2_bot/lib/welcomer" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/broadcaster" + "github.com/fat0troll/i2_bot/lib/chatter" + "github.com/fat0troll/i2_bot/lib/datacache" + "github.com/fat0troll/i2_bot/lib/forwarder" + "github.com/fat0troll/i2_bot/lib/migrations" + "github.com/fat0troll/i2_bot/lib/orders" + "github.com/fat0troll/i2_bot/lib/pinner" + "github.com/fat0troll/i2_bot/lib/pokedexer" + "github.com/fat0troll/i2_bot/lib/reminder" + "github.com/fat0troll/i2_bot/lib/router" + "github.com/fat0troll/i2_bot/lib/sender" + "github.com/fat0troll/i2_bot/lib/squader" + "github.com/fat0troll/i2_bot/lib/statistics" + "github.com/fat0troll/i2_bot/lib/talkers" + "github.com/fat0troll/i2_bot/lib/users" + "github.com/fat0troll/i2_bot/lib/welcomer" ) var ( diff --git a/lib/appcontext/appcontext.go b/lib/appcontext/appcontext.go index b8b92e4..ce4fe36 100644 --- a/lib/appcontext/appcontext.go +++ b/lib/appcontext/appcontext.go @@ -13,24 +13,24 @@ import ( "github.com/go-telegram-bot-api/telegram-bot-api" "github.com/jmoiron/sqlx" "github.com/robfig/cron" - "source.wtfteam.pro/i2_bot/i2_bot/lib/broadcaster/broadcasterinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/chatter/chatterinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/config" - "source.wtfteam.pro/i2_bot/i2_bot/lib/connections" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datacache/datacacheinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/forwarder/forwarderinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/migrations/migrationsinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/orders/ordersinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/pinner/pinnerinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/pokedexer/pokedexerinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/reminder/reminderinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/router/routerinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/sender/senderinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/squader/squaderinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/statistics/statisticsinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/talkers/talkersinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/users/usersinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/welcomer/welcomerinterface" + "github.com/fat0troll/i2_bot/lib/broadcaster/broadcasterinterface" + "github.com/fat0troll/i2_bot/lib/chatter/chatterinterface" + "github.com/fat0troll/i2_bot/lib/config" + "github.com/fat0troll/i2_bot/lib/connections" + "github.com/fat0troll/i2_bot/lib/datacache/datacacheinterface" + "github.com/fat0troll/i2_bot/lib/forwarder/forwarderinterface" + "github.com/fat0troll/i2_bot/lib/migrations/migrationsinterface" + "github.com/fat0troll/i2_bot/lib/orders/ordersinterface" + "github.com/fat0troll/i2_bot/lib/pinner/pinnerinterface" + "github.com/fat0troll/i2_bot/lib/pokedexer/pokedexerinterface" + "github.com/fat0troll/i2_bot/lib/reminder/reminderinterface" + "github.com/fat0troll/i2_bot/lib/router/routerinterface" + "github.com/fat0troll/i2_bot/lib/sender/senderinterface" + "github.com/fat0troll/i2_bot/lib/squader/squaderinterface" + "github.com/fat0troll/i2_bot/lib/statistics/statisticsinterface" + "github.com/fat0troll/i2_bot/lib/talkers/talkersinterface" + "github.com/fat0troll/i2_bot/lib/users/usersinterface" + "github.com/fat0troll/i2_bot/lib/welcomer/welcomerinterface" ) // Context is an application context struct diff --git a/lib/broadcaster/broadcaster.go b/lib/broadcaster/broadcaster.go index 60c0b96..73ebc33 100644 --- a/lib/broadcaster/broadcaster.go +++ b/lib/broadcaster/broadcaster.go @@ -6,7 +6,7 @@ package broadcaster import ( "time" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (b *Broadcaster) createBroadcastMessage(playerRaw *dbmapping.Player, messageBody string, broadcastType string) (dbmapping.Broadcast, bool) { diff --git a/lib/broadcaster/broadcasterinterface/broadcasterinterface.go b/lib/broadcaster/broadcasterinterface/broadcasterinterface.go index fffdbc4..a8234a0 100644 --- a/lib/broadcaster/broadcasterinterface/broadcasterinterface.go +++ b/lib/broadcaster/broadcasterinterface/broadcasterinterface.go @@ -5,7 +5,7 @@ package broadcasterinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // BroadcasterInterface implements Broadcaster for importing via appcontex diff --git a/lib/broadcaster/exported.go b/lib/broadcaster/exported.go index e7385d1..cbcdc22 100644 --- a/lib/broadcaster/exported.go +++ b/lib/broadcaster/exported.go @@ -4,8 +4,8 @@ package broadcaster import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/broadcaster/broadcasterinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/broadcaster/broadcasterinterface" ) var ( diff --git a/lib/broadcaster/responders.go b/lib/broadcaster/responders.go index e37ecb3..58ef33f 100644 --- a/lib/broadcaster/responders.go +++ b/lib/broadcaster/responders.go @@ -7,7 +7,7 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // AdminBroadcastMessageCompose saves message for future broadcast diff --git a/lib/broadcaster/sender.go b/lib/broadcaster/sender.go index 3b1deb0..fce87f9 100644 --- a/lib/broadcaster/sender.go +++ b/lib/broadcaster/sender.go @@ -7,8 +7,8 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/constants" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/constants" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // AdminBroadcastMessageSend sends saved message to all private chats diff --git a/lib/chatter/chatterinterface/chatterinterface.go b/lib/chatter/chatterinterface/chatterinterface.go index f645f30..b7d9a61 100644 --- a/lib/chatter/chatterinterface/chatterinterface.go +++ b/lib/chatter/chatterinterface/chatterinterface.go @@ -5,7 +5,7 @@ package chatterinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // ChatterInterface implements Chatter for importing via appcontext. diff --git a/lib/chatter/exported.go b/lib/chatter/exported.go index e563e59..217ff41 100644 --- a/lib/chatter/exported.go +++ b/lib/chatter/exported.go @@ -4,8 +4,8 @@ package chatter import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/chatter/chatterinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/chatter/chatterinterface" ) var ( diff --git a/lib/chatter/restricters.go b/lib/chatter/restricters.go index e83627d..9bf4750 100644 --- a/lib/chatter/restricters.go +++ b/lib/chatter/restricters.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (ct *Chatter) userPrivilegesCheck(update *tgbotapi.Update, user *tgbotapi.User) bool { diff --git a/lib/connections/connections.go b/lib/connections/connections.go index e6352ca..1c480e2 100644 --- a/lib/connections/connections.go +++ b/lib/connections/connections.go @@ -8,7 +8,7 @@ import ( _ "github.com/go-sql-driver/mysql" // MySQL driver for sqlx "github.com/go-telegram-bot-api/telegram-bot-api" "github.com/jmoiron/sqlx" - "source.wtfteam.pro/i2_bot/i2_bot/lib/config" + "github.com/fat0troll/i2_bot/lib/config" ) // BotInit initializes connection to Telegram diff --git a/lib/datacache/chats.go b/lib/datacache/chats.go index 1d2ce4a..97f0aa6 100644 --- a/lib/datacache/chats.go +++ b/lib/datacache/chats.go @@ -9,7 +9,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (dc *DataCache) initChats() { diff --git a/lib/datacache/datacacheinterface/datacacheinterface.go b/lib/datacache/datacacheinterface/datacacheinterface.go index 01d3248..5c0a4a6 100644 --- a/lib/datacache/datacacheinterface/datacacheinterface.go +++ b/lib/datacache/datacacheinterface/datacacheinterface.go @@ -5,8 +5,8 @@ package datacacheinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // DataCacheInterface implements DataCache for importing via appcontext. diff --git a/lib/datacache/elements.go b/lib/datacache/elements.go index c86a018..b3b02c6 100644 --- a/lib/datacache/elements.go +++ b/lib/datacache/elements.go @@ -8,8 +8,8 @@ import ( "strconv" "gopkg.in/yaml.v2" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/static" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/static" ) func (dc *DataCache) initElements() { diff --git a/lib/datacache/exported.go b/lib/datacache/exported.go index 10cdd58..f7caffc 100644 --- a/lib/datacache/exported.go +++ b/lib/datacache/exported.go @@ -6,10 +6,10 @@ package datacache import ( "sync" - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datacache/datacacheinterface" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/datacache/datacacheinterface" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) var ( diff --git a/lib/datacache/leagues.go b/lib/datacache/leagues.go index 241600d..043c394 100644 --- a/lib/datacache/leagues.go +++ b/lib/datacache/leagues.go @@ -9,8 +9,8 @@ import ( "strings" "gopkg.in/yaml.v2" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/static" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/static" ) func (dc *DataCache) initLeagues() { diff --git a/lib/datacache/levels.go b/lib/datacache/levels.go index fff33e7..edecd35 100644 --- a/lib/datacache/levels.go +++ b/lib/datacache/levels.go @@ -8,8 +8,8 @@ import ( "strconv" "gopkg.in/yaml.v2" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/static" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/static" ) func (dc *DataCache) initLevels() { diff --git a/lib/datacache/locations.go b/lib/datacache/locations.go index e8a834e..383d4bb 100644 --- a/lib/datacache/locations.go +++ b/lib/datacache/locations.go @@ -8,8 +8,8 @@ import ( "strconv" "gopkg.in/yaml.v2" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/static" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/static" ) func (dc *DataCache) initLocations() { diff --git a/lib/datacache/players.go b/lib/datacache/players.go index c1c4d14..abbe1f2 100644 --- a/lib/datacache/players.go +++ b/lib/datacache/players.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (dc *DataCache) initPlayers() { diff --git a/lib/datacache/pokememes.go b/lib/datacache/pokememes.go index a8d6133..61f7922 100644 --- a/lib/datacache/pokememes.go +++ b/lib/datacache/pokememes.go @@ -9,8 +9,8 @@ import ( "strings" "gopkg.in/yaml.v2" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/static" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/static" ) func (dc *DataCache) initPokememes() { diff --git a/lib/datacache/profiles.go b/lib/datacache/profiles.go index 39066eb..ce66d04 100644 --- a/lib/datacache/profiles.go +++ b/lib/datacache/profiles.go @@ -7,7 +7,7 @@ import ( "errors" "strconv" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (dc *DataCache) initProfiles() { diff --git a/lib/datacache/squads.go b/lib/datacache/squads.go index 4f01fd1..298b553 100644 --- a/lib/datacache/squads.go +++ b/lib/datacache/squads.go @@ -7,7 +7,7 @@ import ( "errors" "strconv" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (dc *DataCache) initSquads() { diff --git a/lib/datacache/tournament_reports.go b/lib/datacache/tournament_reports.go index def9cf7..eed1807 100644 --- a/lib/datacache/tournament_reports.go +++ b/lib/datacache/tournament_reports.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (dc *DataCache) initTournamentReports() { diff --git a/lib/datacache/weapons.go b/lib/datacache/weapons.go index 8e92817..38bd1ed 100644 --- a/lib/datacache/weapons.go +++ b/lib/datacache/weapons.go @@ -9,8 +9,8 @@ import ( "strings" "gopkg.in/yaml.v2" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" - "source.wtfteam.pro/i2_bot/i2_bot/static" + "github.com/fat0troll/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/static" ) func (dc *DataCache) initWeapons() { diff --git a/lib/dbmapping/players.go b/lib/dbmapping/players.go index 2ed66b3..c953948 100644 --- a/lib/dbmapping/players.go +++ b/lib/dbmapping/players.go @@ -6,7 +6,7 @@ package dbmapping import ( "time" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/lib/datamapping" ) // Player is a struct, which represents `players` table item in databse. diff --git a/lib/forwarder/exported.go b/lib/forwarder/exported.go index 084514d..91bde11 100644 --- a/lib/forwarder/exported.go +++ b/lib/forwarder/exported.go @@ -4,8 +4,8 @@ package forwarder import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/forwarder/forwarderinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/forwarder/forwarderinterface" ) var ( diff --git a/lib/forwarder/forwarder.go b/lib/forwarder/forwarder.go index 2ac14d2..fd0b4d6 100644 --- a/lib/forwarder/forwarder.go +++ b/lib/forwarder/forwarder.go @@ -7,7 +7,7 @@ import ( "regexp" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // ProcessForward process forwards for single-user chats diff --git a/lib/forwarder/forwarderinterface/forwarderinterface.go b/lib/forwarder/forwarderinterface/forwarderinterface.go index 3966b5b..02793f8 100644 --- a/lib/forwarder/forwarderinterface/forwarderinterface.go +++ b/lib/forwarder/forwarderinterface/forwarderinterface.go @@ -5,7 +5,7 @@ package forwarderinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // ForwarderInterface implements Getters for importing via appcontext. diff --git a/lib/migrations/exported.go b/lib/migrations/exported.go index bcb06ff..97ea743 100644 --- a/lib/migrations/exported.go +++ b/lib/migrations/exported.go @@ -4,8 +4,8 @@ package migrations import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/migrations/migrationsinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/migrations/migrationsinterface" ) // Migrations handles all functions of migrations package diff --git a/lib/orders/exported.go b/lib/orders/exported.go index 5bb4293..5f6e4e2 100644 --- a/lib/orders/exported.go +++ b/lib/orders/exported.go @@ -4,8 +4,8 @@ package orders import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/orders/ordersinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/orders/ordersinterface" ) var ( diff --git a/lib/orders/getters.go b/lib/orders/getters.go index 5a993da..de59232 100644 --- a/lib/orders/getters.go +++ b/lib/orders/getters.go @@ -4,7 +4,7 @@ package orders import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // GetAllOrders returns all orders in database diff --git a/lib/orders/orders.go b/lib/orders/orders.go index e9e14db..157aeda 100644 --- a/lib/orders/orders.go +++ b/lib/orders/orders.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // Internal functions diff --git a/lib/orders/ordersinterface/ordersinterface.go b/lib/orders/ordersinterface/ordersinterface.go index c18bee7..b3f6d5c 100644 --- a/lib/orders/ordersinterface/ordersinterface.go +++ b/lib/orders/ordersinterface/ordersinterface.go @@ -5,7 +5,7 @@ package ordersinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // OrdersInterface implements Orders for importing via appcontext. diff --git a/lib/pinner/exported.go b/lib/pinner/exported.go index fd150e2..fb73a2f 100644 --- a/lib/pinner/exported.go +++ b/lib/pinner/exported.go @@ -4,8 +4,8 @@ package pinner import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/pinner/pinnerinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/pinner/pinnerinterface" ) var ( diff --git a/lib/pinner/pinner.go b/lib/pinner/pinner.go index 61124c6..bbeb7a1 100644 --- a/lib/pinner/pinner.go +++ b/lib/pinner/pinner.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (p *Pinner) execMassMessagePin(update *tgbotapi.Update, groupChats []dbmapping.Chat) string { diff --git a/lib/pokedexer/exported.go b/lib/pokedexer/exported.go index 0a07963..53fabcb 100644 --- a/lib/pokedexer/exported.go +++ b/lib/pokedexer/exported.go @@ -5,8 +5,8 @@ package pokedexer import ( // local - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/pokedexer/pokedexerinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/pokedexer/pokedexerinterface" ) var ( diff --git a/lib/pokedexer/getters.go b/lib/pokedexer/getters.go index 0fe0c0c..114086a 100644 --- a/lib/pokedexer/getters.go +++ b/lib/pokedexer/getters.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/lib/datamapping" ) func (p *Pokedexer) getAdvicePokememes(playerID int, adviceType string) ([]*datamapping.PokememeFull, bool) { diff --git a/lib/pokedexer/parsers.go b/lib/pokedexer/parsers.go index a8fe7b5..b86a09b 100644 --- a/lib/pokedexer/parsers.go +++ b/lib/pokedexer/parsers.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // ParsePokememe parses pokememe, forwarded from PokememeBroBot, to database diff --git a/lib/pokedexer/pokedexer.go b/lib/pokedexer/pokedexer.go index 03ebc7e..3a7a04c 100644 --- a/lib/pokedexer/pokedexer.go +++ b/lib/pokedexer/pokedexer.go @@ -8,7 +8,7 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/datamapping" + "github.com/fat0troll/i2_bot/lib/datamapping" ) func (p *Pokedexer) pokememesListingMessage(update *tgbotapi.Update, page int, pokememesArray map[int]*datamapping.PokememeFull) string { diff --git a/lib/pokedexer/pokedexerinterface/pokedexerinterface.go b/lib/pokedexer/pokedexerinterface/pokedexerinterface.go index 25e5cc6..ae8ef56 100644 --- a/lib/pokedexer/pokedexerinterface/pokedexerinterface.go +++ b/lib/pokedexer/pokedexerinterface/pokedexerinterface.go @@ -5,7 +5,7 @@ package pokedexerinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // PokedexerInterface implements Pokedexer for importing via appcontext. diff --git a/lib/pokedexer/responders.go b/lib/pokedexer/responders.go index bbc4bf7..3606406 100644 --- a/lib/pokedexer/responders.go +++ b/lib/pokedexer/responders.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // AdvicePokememesList shows list for catching diff --git a/lib/reminder/exported.go b/lib/reminder/exported.go index c4660d9..4815c0f 100644 --- a/lib/reminder/exported.go +++ b/lib/reminder/exported.go @@ -4,8 +4,8 @@ package reminder import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/reminder/reminderinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/reminder/reminderinterface" ) var ( diff --git a/lib/reminder/reminder.go b/lib/reminder/reminder.go index 1b4234b..58d7a88 100644 --- a/lib/reminder/reminder.go +++ b/lib/reminder/reminder.go @@ -7,7 +7,7 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (r *Reminder) getRemindersForUser(playerRaw *dbmapping.Player) ([]dbmapping.Alarm, bool) { diff --git a/lib/reminder/reminderinterface/reminderinterface.go b/lib/reminder/reminderinterface/reminderinterface.go index 7bd7585..af6c926 100644 --- a/lib/reminder/reminderinterface/reminderinterface.go +++ b/lib/reminder/reminderinterface/reminderinterface.go @@ -5,7 +5,7 @@ package reminderinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // ReminderInterface implements Reminder for importing via appcontext diff --git a/lib/reminder/responders.go b/lib/reminder/responders.go index c1e8b3e..a7e9b7a 100644 --- a/lib/reminder/responders.go +++ b/lib/reminder/responders.go @@ -5,7 +5,7 @@ package reminder import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // AlarmsList lists all alarms for user with buttons to enable/disable each of available alarms diff --git a/lib/reminder/sender.go b/lib/reminder/sender.go index bf852cd..2c516aa 100644 --- a/lib/reminder/sender.go +++ b/lib/reminder/sender.go @@ -7,7 +7,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // SendReminders sends reminders for users about coming league tournament diff --git a/lib/reminder/updaters.go b/lib/reminder/updaters.go index 8cdd30a..75fae7e 100644 --- a/lib/reminder/updaters.go +++ b/lib/reminder/updaters.go @@ -9,7 +9,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // CreateAlarmSetting creates alarm setting for user diff --git a/lib/router/exported.go b/lib/router/exported.go index 9f60888..f219c89 100644 --- a/lib/router/exported.go +++ b/lib/router/exported.go @@ -4,7 +4,7 @@ package router import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/appcontext" ) var ( diff --git a/lib/router/group_request.go b/lib/router/group_request.go index d47c216..00de8b3 100644 --- a/lib/router/group_request.go +++ b/lib/router/group_request.go @@ -8,7 +8,7 @@ import ( "regexp" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (r *Router) routeGroupRequest(update tgbotapi.Update, playerRaw *dbmapping.Player, chatRaw *dbmapping.Chat) string { diff --git a/lib/router/private_request.go b/lib/router/private_request.go index fcb982a..4609431 100644 --- a/lib/router/private_request.go +++ b/lib/router/private_request.go @@ -8,7 +8,7 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (r *Router) routePrivateRequest(update tgbotapi.Update, playerRaw *dbmapping.Player, chatRaw *dbmapping.Chat) string { diff --git a/lib/sender/exported.go b/lib/sender/exported.go index c333525..0d94566 100644 --- a/lib/sender/exported.go +++ b/lib/sender/exported.go @@ -4,8 +4,8 @@ package sender import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/sender/senderinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/sender/senderinterface" ) var ( diff --git a/lib/squader/exported.go b/lib/squader/exported.go index ccbdf07..164d596 100644 --- a/lib/squader/exported.go +++ b/lib/squader/exported.go @@ -4,8 +4,8 @@ package squader import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/squader/squaderinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/squader/squaderinterface" ) var ( diff --git a/lib/squader/responders.go b/lib/squader/responders.go index 24f38b0..cebed24 100644 --- a/lib/squader/responders.go +++ b/lib/squader/responders.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // SquadsList lists all squads diff --git a/lib/squader/squader.go b/lib/squader/squader.go index c391191..90b3636 100644 --- a/lib/squader/squader.go +++ b/lib/squader/squader.go @@ -10,7 +10,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (s *Squader) isUserAnyCommander(playerID int) bool { diff --git a/lib/squader/squaderinterface/squaderinterface.go b/lib/squader/squaderinterface/squaderinterface.go index 281a633..b72706e 100644 --- a/lib/squader/squaderinterface/squaderinterface.go +++ b/lib/squader/squaderinterface/squaderinterface.go @@ -5,7 +5,7 @@ package squaderinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // SquaderInterface implements Squader for importing via appcontext. diff --git a/lib/statistics/exported.go b/lib/statistics/exported.go index 0eb691a..4a8c0d2 100644 --- a/lib/statistics/exported.go +++ b/lib/statistics/exported.go @@ -4,8 +4,8 @@ package statistics import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/statistics/statisticsinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/statistics/statisticsinterface" ) var ( diff --git a/lib/statistics/squads.go b/lib/statistics/squads.go index e01a1a0..545a8f9 100644 --- a/lib/statistics/squads.go +++ b/lib/statistics/squads.go @@ -6,7 +6,7 @@ package statistics import ( "strconv" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // SquadStatictics generates statistics message snippet. Public due to usage in chats list diff --git a/lib/statistics/statisticsinterface/statisticinterface.go b/lib/statistics/statisticsinterface/statisticinterface.go index a37112a..71e73a5 100644 --- a/lib/statistics/statisticsinterface/statisticinterface.go +++ b/lib/statistics/statisticsinterface/statisticinterface.go @@ -5,7 +5,7 @@ package statisticsinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // StatisticsInterface implements Statistics for importing via appcontext. diff --git a/lib/statistics/top.go b/lib/statistics/top.go index db204e2..1bb3239 100644 --- a/lib/statistics/top.go +++ b/lib/statistics/top.go @@ -8,7 +8,7 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) func (s *Statistics) renderPosition(profilesRaw *[]*dbmapping.PlayerProfile, playerRaw *dbmapping.Player) string { diff --git a/lib/talkers/easter.go b/lib/talkers/easter.go index f2afd21..b1ea061 100644 --- a/lib/talkers/easter.go +++ b/lib/talkers/easter.go @@ -9,7 +9,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/constants" + "github.com/fat0troll/i2_bot/lib/constants" ) // LongMessage is an easter egg diff --git a/lib/talkers/errors.go b/lib/talkers/errors.go index 5070b06..dfd445f 100644 --- a/lib/talkers/errors.go +++ b/lib/talkers/errors.go @@ -5,7 +5,7 @@ package talkers import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/constants" + "github.com/fat0troll/i2_bot/lib/constants" ) // AnyMessageUnauthorized throws when user can't do something diff --git a/lib/talkers/exported.go b/lib/talkers/exported.go index c742f1a..13cc4fd 100644 --- a/lib/talkers/exported.go +++ b/lib/talkers/exported.go @@ -4,8 +4,8 @@ package talkers import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/talkers/talkersinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/talkers/talkersinterface" ) var ( diff --git a/lib/talkers/help.go b/lib/talkers/help.go index 6a3ebbe..9af6885 100644 --- a/lib/talkers/help.go +++ b/lib/talkers/help.go @@ -7,9 +7,9 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/config" - "source.wtfteam.pro/i2_bot/i2_bot/lib/constants" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/config" + "github.com/fat0troll/i2_bot/lib/constants" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // AcademyMessage gives user link to Bastion diff --git a/lib/talkers/talkersinterface/talkersinterface.go b/lib/talkers/talkersinterface/talkersinterface.go index a38b7c6..5ab99f2 100644 --- a/lib/talkers/talkersinterface/talkersinterface.go +++ b/lib/talkers/talkersinterface/talkersinterface.go @@ -5,7 +5,7 @@ package talkersinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // TalkersInterface implements Talkers for importing via appcontex diff --git a/lib/users/exported.go b/lib/users/exported.go index fe1d423..8716263 100644 --- a/lib/users/exported.go +++ b/lib/users/exported.go @@ -4,8 +4,8 @@ package users import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/users/usersinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/users/usersinterface" ) var ( diff --git a/lib/users/getters.go b/lib/users/getters.go index cd1193e..14b4c5e 100644 --- a/lib/users/getters.go +++ b/lib/users/getters.go @@ -5,7 +5,7 @@ package users import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // GetPrettyName returns "pretty" name of user (first_name + last name or username) diff --git a/lib/users/parsers.go b/lib/users/parsers.go index 2aaeea8..e090ca2 100644 --- a/lib/users/parsers.go +++ b/lib/users/parsers.go @@ -10,7 +10,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // Internal functions diff --git a/lib/users/responders.go b/lib/users/responders.go index f3faec5..114c497 100644 --- a/lib/users/responders.go +++ b/lib/users/responders.go @@ -8,7 +8,7 @@ import ( "strings" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // FormatUsername formats Telegram username for posting diff --git a/lib/users/users.go b/lib/users/users.go index c12465d..8a65ce8 100644 --- a/lib/users/users.go +++ b/lib/users/users.go @@ -10,7 +10,7 @@ import ( "time" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // Internal functions for Users package diff --git a/lib/users/usersinterface/usersinterface.go b/lib/users/usersinterface/usersinterface.go index 666d3c0..0a5e30f 100644 --- a/lib/users/usersinterface/usersinterface.go +++ b/lib/users/usersinterface/usersinterface.go @@ -5,7 +5,7 @@ package usersinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // UsersInterface implements Users for importing via appcontex diff --git a/lib/welcomer/exported.go b/lib/welcomer/exported.go index 275695d..66ba5a2 100644 --- a/lib/welcomer/exported.go +++ b/lib/welcomer/exported.go @@ -4,8 +4,8 @@ package welcomer import ( - "source.wtfteam.pro/i2_bot/i2_bot/lib/appcontext" - "source.wtfteam.pro/i2_bot/i2_bot/lib/welcomer/welcomerinterface" + "github.com/fat0troll/i2_bot/lib/appcontext" + "github.com/fat0troll/i2_bot/lib/welcomer/welcomerinterface" ) var ( diff --git a/lib/welcomer/responders.go b/lib/welcomer/responders.go index 6d01d29..ca03b38 100644 --- a/lib/welcomer/responders.go +++ b/lib/welcomer/responders.go @@ -7,7 +7,7 @@ import ( "strconv" "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // PrivateWelcomeMessageUnauthorized tell new user what to do. diff --git a/lib/welcomer/welcomerinterface/welcomerinterface.go b/lib/welcomer/welcomerinterface/welcomerinterface.go index bc233f6..f8e2fe0 100644 --- a/lib/welcomer/welcomerinterface/welcomerinterface.go +++ b/lib/welcomer/welcomerinterface/welcomerinterface.go @@ -5,7 +5,7 @@ package welcomerinterface import ( "github.com/go-telegram-bot-api/telegram-bot-api" - "source.wtfteam.pro/i2_bot/i2_bot/lib/dbmapping" + "github.com/fat0troll/i2_bot/lib/dbmapping" ) // WelcomerInterface implements Welcomer for importing via appcontex