Skip to content

Commit

Permalink
修改包名
Browse files Browse the repository at this point in the history
  • Loading branch information
monigo committed Nov 14, 2019
1 parent 197ade0 commit 5786d64
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import (
"bufio"
"flag"
"fmt"
"github.com/monigo/srun-cmd"
"github.com/monigo/srun-cmd/pkg/term"
"github.com/monigo/srun-cmd/store"
log "github.com/sirupsen/logrus"
"io"
"os"
"srun"
"srun/pkg/term"
"srun/store"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion cli/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package cli

import (
"fmt"
"github.com/monigo/srun-cmd/config"
"runtime"
"srun/config"
)

var optionDocs = map[string]string{
Expand Down
2 changes: 1 addition & 1 deletion cli/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package cli

import (
"context"
"github.com/monigo/srun-cmd/config"
log "github.com/sirupsen/logrus"
"net"
"net/http"
"srun/config"
"strings"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"srun/cli"
"github.com/monigo/srun-cmd/cli"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module srun
module github.com/monigo/srun-cmd

go 1.12
go 1.13

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
Expand Down
8 changes: 4 additions & 4 deletions srun.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package srun

import (
"github.com/monigo/srun-cmd/form"
"github.com/monigo/srun-cmd/hash"
"github.com/monigo/srun-cmd/resp"
"github.com/monigo/srun-cmd/utils"
log "github.com/sirupsen/logrus"
"srun/form"
"srun/hash"
"srun/resp"
"srun/utils"
"strings"
)

Expand Down

0 comments on commit 5786d64

Please sign in to comment.