changed import paths

This commit is contained in:
Andreas Neue 2019-08-01 11:04:31 +02:00
parent 67ad078dc2
commit d9905cc765
3 changed files with 6 additions and 10 deletions

8
irc.go
View File

@ -1,6 +1,6 @@
// vi:ts=4:sts=4:sw=4:noet:tw=72 // vi:ts=4:sts=4:sw=4:noet:tw=72
// //
// flokatirc // flokati
// //
// Copyright (c) 2015,2016 Andreas Neue <an@dnix.de> // Copyright (c) 2015,2016 Andreas Neue <an@dnix.de>
@ -12,13 +12,11 @@ import (
"strings" "strings"
"time" "time"
"code.dnix.de/an/xlog" "git.dnix.de/an/flokati/modules"
"git.dnix.de/an/xlog"
"github.com/nickvanw/ircx" "github.com/nickvanw/ircx"
"github.com/sorcix/irc" "github.com/sorcix/irc"
"github.com/sorcix/irc/ctcp" "github.com/sorcix/irc/ctcp"
"flokatirc/modules"
) )
var ( var (

View File

@ -12,8 +12,7 @@ import (
"runtime" "runtime"
"strings" "strings"
"modules" "git.dnix.de/an/flokati/modules"
"git.dnix.de/an/xlog" "git.dnix.de/an/xlog"
) )

View File

@ -1,19 +1,18 @@
// vi:ts=4:sts=4:sw=4:noet:tw=72 // vi:ts=4:sts=4:sw=4:noet:tw=72
// //
// flokatimx // flokati
// //
// Copyright (c) 2019 Andreas Neue <an@dnix.de> // Copyright (c) 2019 Andreas Neue <an@dnix.de>
package main package main
import ( import (
"flokati/modules"
"fmt" "fmt"
"strings" "strings"
"time" "time"
"git.dnix.de/an/flokati/modules"
"git.dnix.de/an/xlog" "git.dnix.de/an/xlog"
"github.com/matrix-org/gomatrix" "github.com/matrix-org/gomatrix"
) )