Merge pull request #1 from mikkeloscar/change-import

Change import to github.com
This commit is contained in:
Liam Galvin 2018-10-20 17:53:56 +01:00 committed by GitHub
commit f05b2a8d8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 14 deletions

View File

@ -5,13 +5,13 @@ import (
"runtime" "runtime"
"time" "time"
"gitlab.com/liamg/raft/glfont" "github.com/liamg/raft/glfont"
"github.com/go-gl/gl/all-core/gl" "github.com/go-gl/gl/all-core/gl"
"github.com/go-gl/glfw/v3.2/glfw" "github.com/go-gl/glfw/v3.2/glfw"
"gitlab.com/liamg/raft/buffer" "github.com/liamg/raft/buffer"
"gitlab.com/liamg/raft/config" "github.com/liamg/raft/config"
"gitlab.com/liamg/raft/terminal" "github.com/liamg/raft/terminal"
"go.uber.org/zap" "go.uber.org/zap"
) )

View File

@ -5,7 +5,7 @@ import (
"math" "math"
"github.com/go-gl/glfw/v3.2/glfw" "github.com/go-gl/glfw/v3.2/glfw"
"gitlab.com/liamg/raft/terminal" "github.com/liamg/raft/terminal"
) )
func (gui *GUI) mouseButtonCallback(w *glfw.Window, button glfw.MouseButton, action glfw.Action, mod glfw.ModifierKey) { func (gui *GUI) mouseButtonCallback(w *glfw.Window, button glfw.MouseButton, action glfw.Action, mod glfw.ModifierKey) {

View File

@ -4,9 +4,9 @@ import (
"math" "math"
"github.com/go-gl/gl/all-core/gl" "github.com/go-gl/gl/all-core/gl"
"gitlab.com/liamg/raft/buffer" "github.com/liamg/raft/buffer"
"gitlab.com/liamg/raft/config" "github.com/liamg/raft/config"
"gitlab.com/liamg/raft/glfont" "github.com/liamg/raft/glfont"
) )
type OpenGLRenderer struct { type OpenGLRenderer struct {

View File

@ -10,9 +10,9 @@ import (
"github.com/kr/pty" "github.com/kr/pty"
"github.com/riywo/loginshell" "github.com/riywo/loginshell"
"gitlab.com/liamg/raft/config" "github.com/liamg/raft/config"
"gitlab.com/liamg/raft/gui" "github.com/liamg/raft/gui"
"gitlab.com/liamg/raft/terminal" "github.com/liamg/raft/terminal"
"go.uber.org/zap" "go.uber.org/zap"
) )

View File

@ -3,7 +3,7 @@ package terminal
import ( import (
"fmt" "fmt"
"gitlab.com/liamg/raft/buffer" "github.com/liamg/raft/buffer"
) )
func sgrSequenceHandler(params []string, intermediate string, terminal *Terminal) error { func sgrSequenceHandler(params []string, intermediate string, terminal *Terminal) error {

View File

@ -10,8 +10,8 @@ import (
"syscall" "syscall"
"unsafe" "unsafe"
"gitlab.com/liamg/raft/buffer" "github.com/liamg/raft/buffer"
"gitlab.com/liamg/raft/config" "github.com/liamg/raft/config"
"go.uber.org/zap" "go.uber.org/zap"
) )