This repository was archived by the owner on Jun 30, 2022. It is now read-only.
File tree 7 files changed +17
-13
lines changed
7 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 1
1
# go-powershell
2
2
3
+ _ NOTE: this repository has been recently (2020-11-18) moved out of the github.com/rancher org to github.com/k3s-io
4
+ supporting the [ acceptance of K3s as a CNCF sandbox project] ( https://github.com/cncf/toc/pull/447 ) _ .
5
+ ---
6
+
3
7
This package is inspired by [ jPowerShell] ( https://github.com/profesorfalken/jPowerShell )
4
8
and allows one to run and remote-control a PowerShell session. Use this if you
5
9
don't have a static script that you want to execute, bur rather run dynamic
6
10
commands.
7
11
8
12
## Installation
9
13
10
- go get github.com/rancher /go-powershell
14
+ go get github.com/k3s-io /go-powershell
11
15
12
16
## Usage
13
17
@@ -21,8 +25,8 @@ package main
21
25
import (
22
26
" fmt"
23
27
24
- ps " github.com/rancher /go-powershell"
25
- " github.com/rancher /go-powershell/backend"
28
+ ps " github.com/k3s-io /go-powershell"
29
+ " github.com/k3s-io /go-powershell/backend"
26
30
)
27
31
28
32
func main () {
@@ -59,9 +63,9 @@ package main
59
63
import (
60
64
" fmt"
61
65
62
- ps " github.com/rancher /go-powershell"
63
- " github.com/rancher /go-powershell/backend"
64
- " github.com/rancher /go-powershell/middleware"
66
+ ps " github.com/k3s-io /go-powershell"
67
+ " github.com/k3s-io /go-powershell/backend"
68
+ " github.com/k3s-io /go-powershell/middleware"
65
69
)
66
70
67
71
func main () {
Original file line number Diff line number Diff line change 1
- module github.com/rancher /go-powershell
1
+ module github.com/k3s-io /go-powershell
2
2
3
3
go 1.14
4
4
Original file line number Diff line number Diff line change 6
6
"fmt"
7
7
"strings"
8
8
9
- "github.com/rancher /go-powershell/utils"
9
+ "github.com/k3s-io /go-powershell/utils"
10
10
"github.com/pkg/errors"
11
11
)
12
12
Original file line number Diff line number Diff line change 6
6
"fmt"
7
7
"strconv"
8
8
9
- "github.com/rancher /go-powershell/utils"
9
+ "github.com/k3s-io /go-powershell/utils"
10
10
"github.com/pkg/errors"
11
11
)
12
12
Original file line number Diff line number Diff line change 6
6
"encoding/base64"
7
7
"fmt"
8
8
9
- "github.com/rancher /go-powershell/utils"
9
+ "github.com/k3s-io /go-powershell/utils"
10
10
)
11
11
12
12
// utf8 implements a primitive middleware that encodes all outputs
Original file line number Diff line number Diff line change 8
8
"regexp"
9
9
"sync"
10
10
11
- "github.com/rancher /go-powershell/backend"
12
- "github.com/rancher /go-powershell/utils"
11
+ "github.com/k3s-io /go-powershell/backend"
12
+ "github.com/k3s-io /go-powershell/utils"
13
13
"github.com/pkg/errors"
14
14
)
15
15
Original file line number Diff line number Diff line change 6
6
"testing"
7
7
"time"
8
8
9
- "github.com/rancher /go-powershell/backend"
9
+ "github.com/k3s-io /go-powershell/backend"
10
10
)
11
11
12
12
type context struct {
You can’t perform that action at this time.
0 commit comments