fixed linting errors

Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
This commit is contained in:
Sam Alba 2021-12-13 18:26:41 -08:00
parent c1f612e2a3
commit 146971c8f1
2 changed files with 25 additions and 1 deletions

View File

@ -30,6 +30,18 @@ _No input._
_No output._
## engine.#ImageConfig
Container image config. See [OCI](https://opencontainers.org/). Spec left open on purpose to account for additional fields. [Image Spec](https://github.com/opencontainers/image-spec/blob/main/specs-go/v1/config.go) [Docker Superset](https://github.com/moby/buildkit/blob/master/frontend/dockerfile/dockerfile2llb/image.go)
### engine.#ImageConfig Inputs
_No input._
### engine.#ImageConfig Outputs
_No output._
## engine.#Plan
A deployment plan executed by `dagger up`
@ -42,6 +54,18 @@ _No input._
_No output._
## engine.#Pull
Download a container image from a remote repository
### engine.#Pull Inputs
_No input._
### engine.#Pull Outputs
_No output._
## engine.#Secret
A reference to an external secret, for example: - A password - A SSH private key - An API token Secrets are never merged in the Cue tree. They can only be used by a special filesystem mount designed to minimize leak risk.

View File

@ -16,7 +16,7 @@ import (
)
const (
apiKey = "cb9777c166aefe4b77b31f961508191c"
apiKey = "cb9777c166aefe4b77b31f961508191c" //nolint
telemetryURL = "https://t.dagger.io/v1"
)