mirror of
https://github.com/fiatjaf/nak.git
synced 2025-04-21 17:09:56 -04:00
21 lines
452 B
Go
21 lines
452 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
var fsCmd = &cli.Command{
|
|
Name: "fs",
|
|
Usage: "mount a FUSE filesystem that exposes Nostr events as files.",
|
|
Description: `doesn't work on Windows.`,
|
|
DisableSliceFlagSeparator: true,
|
|
Action: func(ctx context.Context, c *cli.Command) error {
|
|
return fmt.Errorf("this doesn't work on Windows.")
|
|
},
|
|
}
|