1
Fork 0

Move to source.hodakov.me

master
Vladimir Hodakov 2019-10-08 05:40:29 +04:00
parent 4d3eb3ea7f
commit 3dd4a82c45
Signed by: Vladimir Hodakov
GPG Key ID: 673980B6882F82C6
7 changed files with 12 additions and 10 deletions

View File

@ -8,7 +8,7 @@ import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"gopkg.in/yaml.v2" "gopkg.in/yaml.v2"
"io/ioutil" "io/ioutil"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/internal/config" "source.hodakov.me/fat0troll/fwzookeeper_helper/internal/config"
"os" "os"
"path/filepath" "path/filepath"
"runtime" "runtime"

View File

@ -5,7 +5,7 @@ package context
import ( import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/internal/config" "source.hodakov.me/fat0troll/fwzookeeper_helper/internal/config"
) )
// VERSION is the current bot's version // VERSION is the current bot's version

View File

@ -5,7 +5,7 @@ package announcesv1
import ( import (
"github.com/rs/zerolog" "github.com/rs/zerolog"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/context" "source.hodakov.me/fat0troll/fwzookeeper_helper/context"
) )
var ( var (

4
go.mod
View File

@ -1,4 +1,4 @@
module lab.wtfteam.pro/fat0troll/fw_zookeeper_helper module source.hodakov.me/fat0troll/fwzookeeper_helper
require ( require (
github.com/Arman92/go-tdlib v0.0.0-20181103144727-9577ff528640 github.com/Arman92/go-tdlib v0.0.0-20181103144727-9577ff528640
@ -6,3 +6,5 @@ require (
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.2 gopkg.in/yaml.v2 v2.2.2
) )
go 1.13

View File

@ -6,7 +6,7 @@ package telegram
import ( import (
tdlib "github.com/Arman92/go-tdlib" tdlib "github.com/Arman92/go-tdlib"
"github.com/rs/zerolog" "github.com/rs/zerolog"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/context" "source.hodakov.me/fat0troll/fwzookeeper_helper/context"
) )
var ( var (

View File

@ -6,8 +6,8 @@ package telegram
import ( import (
"fmt" "fmt"
tdlib "github.com/Arman92/go-tdlib" tdlib "github.com/Arman92/go-tdlib"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/context" "source.hodakov.me/fat0troll/fwzookeeper_helper/context"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/domains/announces/v1" "source.hodakov.me/fat0troll/fwzookeeper_helper/domains/announces/v1"
) )
// Authenticate connects instance to Telegram // Authenticate connects instance to Telegram

View File

@ -4,9 +4,9 @@
package main package main
import ( import (
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/context" "source.hodakov.me/fat0troll/fwzookeeper_helper/context"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/domains/announces/v1" "source.hodakov.me/fat0troll/fwzookeeper_helper/domains/announces/v1"
"lab.wtfteam.pro/fat0troll/fw_zookeeper_helper/internal/telegram" "source.hodakov.me/fat0troll/fwzookeeper_helper/internal/telegram"
"os" "os"
"os/signal" "os/signal"
"runtime" "runtime"