go-aznbd/main.go

21 lines
672 B
Go

package main
import (
"fmt"
_ "git.batts.cloud/vbatts/go-nbdkit"
_ "github.com/Azure/azure-sdk-for-go/storage"
)
// https://github.com/Azure-Samples/azure-sdk-for-go-samples/tree/main/sdk/resourcemanager/storage
// https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/storage#section-readme
// How to "mount" a remote storage? Is that the Blob object?
// Like: func (b *Blob) WriteRange(blobRange BlobRange, bytes io.Reader, options *PutPageOptions) error
// then there is also https://gitlab.com/nbdkit/libnbd/-/tree/master/golang
// https://gitlab.com/nbdkit/libnbd/-/blob/master/golang/examples/simple_copy/simple_copy.go
func main() {
fmt.Println("vim-go")
}