this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add missing plc flag to did command

+7 -5
+7 -5
cmd/gosky/main.go
··· 146 146 147 147 var didCmd = &cli.Command{ 148 148 Name: "did", 149 + Flags: []cli.Flag{ 150 + &cli.StringFlag{ 151 + Name: "plc", 152 + Value: "https://plc.directory", 153 + EnvVars: []string{"BSKY_PLC_URL"}, 154 + }, 155 + }, 149 156 Subcommands: []*cli.Command{ 150 157 didGetCmd, 151 158 didCreateCmd, ··· 180 187 }, 181 188 &cli.StringFlag{ 182 189 Name: "signingkey", 183 - }, 184 - &cli.StringFlag{ 185 - Name: "plc", 186 - Value: "https://plc.staging.bsky.dev", 187 - EnvVars: []string{"BSKY_PLC_URL"}, 188 190 }, 189 191 }, 190 192 Action: func(cctx *cli.Context) error {