Skip to content

Commit

Permalink
refactor: Rename to go-nbd
Browse files Browse the repository at this point in the history
  • Loading branch information
pojntfx committed Mar 23, 2023
1 parent c47c419 commit ee51ca2
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 676 deletions.
734 changes: 73 additions & 661 deletions LICENSE

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# tapisk
# go-nbd

Expose a tape drive as a block device.
Pure Go NBD server and client library.

## Overview

🚧 This project is a work-in-progress! Instructions will be added as soon as it is usable. 🚧

## License

tapisk (c) 2023 Felicitas Pojtinger and contributors
go-nbd (c) 2023 Felicitas Pojtinger and contributors

SPDX-License-Identifier: AGPL-3.0
SPDX-License-Identifier: Apache-2.0
2 changes: 1 addition & 1 deletion cmd/go-nbd-example-client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"os"
"os/signal"

"github.com/pojntfx/tapisk/pkg/client"
"github.com/pojntfx/go-nbd/pkg/client"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions cmd/go-nbd-example-server-file/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"net"
"os"

"github.com/pojntfx/tapisk/pkg/backend"
"github.com/pojntfx/tapisk/pkg/server"
"github.com/pojntfx/go-nbd/pkg/backend"
"github.com/pojntfx/go-nbd/pkg/server"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions cmd/go-nbd-example-server-memory/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"net"

"github.com/pojntfx/tapisk/pkg/backend"
"github.com/pojntfx/tapisk/pkg/server"
"github.com/pojntfx/go-nbd/pkg/backend"
"github.com/pojntfx/go-nbd/pkg/server"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/pojntfx/tapisk
module github.com/pojntfx/go-nbd

go 1.20
6 changes: 3 additions & 3 deletions pkg/client/nbd.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
"os"
"syscall"

"github.com/pojntfx/tapisk/pkg/ioctl"
"github.com/pojntfx/tapisk/pkg/protocol"
"github.com/pojntfx/tapisk/pkg/server"
"github.com/pojntfx/go-nbd/pkg/ioctl"
"github.com/pojntfx/go-nbd/pkg/protocol"
"github.com/pojntfx/go-nbd/pkg/server"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions pkg/server/nbd.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"io"
"net"

"github.com/pojntfx/tapisk/pkg/backend"
"github.com/pojntfx/tapisk/pkg/protocol"
"github.com/pojntfx/go-nbd/pkg/backend"
"github.com/pojntfx/go-nbd/pkg/protocol"
)

var (
Expand Down

0 comments on commit ee51ca2

Please sign in to comment.