Move project to GitHub
This commit is contained in:
parent
ead99200f0
commit
30dfd7bd01
18 changed files with 36 additions and 36 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,2 +1,2 @@
|
|||
.vscode/*
|
||||
iopshell
|
||||
iopshell
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -618,4 +618,4 @@ an absolute waiver of all civil liability in connection with the
|
|||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
|
|
@ -7,7 +7,7 @@ Before installing __iopshell__, make sure you've installed Go >1.10 from [here](
|
|||
```sh
|
||||
$ go get github.com/gorilla/websocket
|
||||
$ go get github.com/chzyer/readline
|
||||
$ go get gitlab.com/c-/iopshell
|
||||
$ go get github.com/neonsea/iopshell
|
||||
```
|
||||
In the future, prebuilt binaries will be provided.
|
||||
|
||||
|
@ -57,7 +57,7 @@ auth
|
|||
```
|
||||
|
||||
## Reporting problems
|
||||
If you encounter an issue, unintended behaviour or a crash, [create a new issue](https://gitlab.com/c-/iopshell/issues). Don't forget to include:
|
||||
If you encounter an issue, unintended behaviour or a crash, [create a new issue](https://github.com/neonsea/iopshell/issues). Don't forget to include:
|
||||
1. Steps to reproduce the issue
|
||||
2. Error log (if any)
|
||||
3. Host platform info: Operating system, CPU architecture
|
||||
|
@ -83,4 +83,4 @@ GNU General Public License for more details.
|
|||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
```
|
||||
```
|
||||
|
|
|
@ -22,8 +22,8 @@ package commands
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
)
|
||||
|
||||
var auth = cmd.Command{
|
||||
|
|
|
@ -23,9 +23,9 @@ import (
|
|||
"encoding/json"
|
||||
"strings"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"gitlab.com/c-/iopshell/internal/textmutate"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/textmutate"
|
||||
)
|
||||
|
||||
var call = cmd.Command{
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
)
|
||||
|
||||
var connect = cmd.Command{
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
)
|
||||
|
||||
var disconnect = cmd.Command{
|
||||
|
|
|
@ -22,7 +22,7 @@ package commands
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
)
|
||||
|
||||
var help = cmd.Command{
|
||||
|
|
|
@ -20,10 +20,10 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"gitlab.com/c-/iopshell/internal/connection"
|
||||
"github.com/neonsea/iopshell/internal/connection"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
)
|
||||
|
||||
var list = cmd.Command{
|
||||
|
|
|
@ -22,8 +22,8 @@ package commands
|
|||
import (
|
||||
"fmt"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
)
|
||||
|
||||
var run = cmd.Command{
|
||||
|
|
|
@ -24,8 +24,8 @@ import (
|
|||
"strconv"
|
||||
"strings"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
)
|
||||
|
||||
var set = cmd.Command{
|
||||
|
|
|
@ -23,7 +23,7 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
)
|
||||
|
||||
var wait = cmd.Command{
|
||||
|
|
|
@ -26,7 +26,7 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/gorilla/websocket"
|
||||
"gitlab.com/c-/iopshell/internal/textmutate"
|
||||
"github.com/neonsea/iopshell/internal/textmutate"
|
||||
)
|
||||
|
||||
var dialer = websocket.Dialer{
|
||||
|
|
|
@ -23,9 +23,9 @@ import (
|
|||
"fmt"
|
||||
|
||||
"github.com/chzyer/readline"
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/connection"
|
||||
"gitlab.com/c-/iopshell/internal/textmutate"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/connection"
|
||||
"github.com/neonsea/iopshell/internal/textmutate"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -25,8 +25,8 @@ import (
|
|||
"os/user"
|
||||
"time"
|
||||
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"gitlab.com/c-/iopshell/internal/textmutate"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/textmutate"
|
||||
)
|
||||
|
||||
// GetRCFile fetches the absolute .ioprc file location
|
||||
|
|
|
@ -25,10 +25,10 @@ import (
|
|||
"strings"
|
||||
|
||||
"github.com/chzyer/readline"
|
||||
"gitlab.com/c-/iopshell/internal/cmd"
|
||||
"gitlab.com/c-/iopshell/internal/connection"
|
||||
"gitlab.com/c-/iopshell/internal/setting"
|
||||
"gitlab.com/c-/iopshell/internal/textmutate"
|
||||
"github.com/neonsea/iopshell/internal/cmd"
|
||||
"github.com/neonsea/iopshell/internal/connection"
|
||||
"github.com/neonsea/iopshell/internal/setting"
|
||||
"github.com/neonsea/iopshell/internal/textmutate"
|
||||
)
|
||||
|
||||
func filterInput(r rune) (rune, bool) {
|
||||
|
|
|
@ -23,8 +23,8 @@ import (
|
|||
"fmt"
|
||||
"os"
|
||||
|
||||
_ "gitlab.com/c-/iopshell/commands" // runs .Register() for each command
|
||||
"gitlab.com/c-/iopshell/internal/shell"
|
||||
_ "github.com/neonsea/iopshell/commands" // runs .Register() for each command
|
||||
"github.com/neonsea/iopshell/internal/shell"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
|
@ -3,4 +3,4 @@ wait
|
|||
auth user user
|
||||
wait
|
||||
call uci get config:p910nd
|
||||
wait
|
||||
wait
|
||||
|
|
Loading…
Reference in a new issue