storageInMemoryFlags is in-memory storage initialization flags for cli setup.
| 13 | // storageInMemoryFlags is in-memory storage initialization flags for cli |
| 14 | // setup. |
| 15 | type storageInMemoryFlags struct { |
| 16 | options repotesting.ReconnectableStorageOptions |
| 17 | } |
| 18 | |
| 19 | func (c *storageInMemoryFlags) Setup(_ cli.StorageProviderServices, cmd *kingpin.CmdClause) { |
| 20 | cmd.Flag("uuid", "UUID of the reconnectable in-memory storage").Required().StringVar(&c.options.UUID) |
nothing calls this directly
no outgoing calls
no test coverage detected