mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
9 lines
205 B
Go
9 lines
205 B
Go
package storage
|
|
|
|
// Bootstrapper is a thing that can set itself up
|
|
type Bootstrapper interface {
|
|
// Bootstrap instructs a configured Bootstrapper to perform
|
|
// its setup operations.
|
|
Bootstrap() error
|
|
}
|