diff --git a/.circleci/config.yml b/.circleci/config.yml index 5361014fd..37bfe0425 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,9 +5,34 @@ version: 2 jobs: build: machine: true - # update docker - - run: docker version - - run: sudo service docker stop - - run: curl -fsSL https://get.docker.com/ | sudo sh - - run: docker version - - run: ./test.sh + working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}} + steps: + - checkout + # update docker + - run: docker version + - run: sudo service docker stop + - run: curl -fsSL https://get.docker.com/ | sudo sh + - run: docker version + - run: ./test.sh + + +# docker: +# # specify the version +# - image: circleci/golang:1.8 + +# # Specify service dependencies here if necessary +# # CircleCI maintains a library of pre-built images +# # documented at https://circleci.com/docs/2.0/circleci-images/ +# # - image: circleci/postgres:9.4 + +# #### TEMPLATE_NOTE: go expects specific checkout path representing url +# #### expecting it in the form of +# #### /go/src/github.com/circleci/go-tool +# #### /go/src/bitbucket.org/circleci/go-tool +# working_directory: /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}} +# steps: +# - checkout + +# # specify any bash command here prefixed with `run: ` +# # - run: go get -v -t -d ./... +# - run: ./test.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 51b5e7b6d..06503083e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ stages: before_script: - mkdir -p "${GOPATH}/src/gitlab-odx.oracle.com/odx/" - ln -s `pwd` "${GOPATH}/src/gitlab-odx.oracle.com/odx/" - - cd "${GOPATH}/src/gitlab-odx.oracle.com/odx/functions" + - cd "${GOPATH}/src/github.com/fnproject/fn" build_job: stage: build diff --git a/Makefile b/Makefile index 7ec441768..45890400b 100644 --- a/Makefile +++ b/Makefile @@ -30,11 +30,11 @@ run: build docker-dep: # todo: need to create a dep tool image for this (or just ditch this) - docker run --rm -it -v ${CURDIR}:/go/src/gitlab-odx.oracle.com/odx/functions -w /go/src/gitlab-odx.oracle.com/odx/functions treeder/glide install -v + docker run --rm -it -v ${CURDIR}:/go/src/github.com/fnproject/fn -w /go/src/github.com/fnproject/fn treeder/glide install -v docker-build: docker pull funcy/go:dev - docker run --rm -v ${CURDIR}:/go/src/gitlab-odx.oracle.com/odx/functions -w /go/src/gitlab-odx.oracle.com/odx/functions funcy/go:dev go build -o functions-alpine + docker run --rm -v ${CURDIR}:/go/src/github.com/fnproject/fn -w /go/src/github.com/fnproject/fn funcy/go:dev go build -o functions-alpine docker build --build-arg HTTP_PROXY -t funcy/functions:latest . docker-run: docker-build @@ -52,9 +52,9 @@ docker-test-run-with-postgres: docker-test: docker run -ti --privileged --rm -e LOG_LEVEL=debug \ -v /var/run/docker.sock:/var/run/docker.sock \ - -v ${CURDIR}:/go/src/gitlab-odx.oracle.com/odx/functions \ - -w /go/src/gitlab-odx.oracle.com/odx/functions \ + -v ${CURDIR}:/go/src/github.com/fnproject/fn \ + -w /go/src/github.com/fnproject/fn \ funcy/go:dev go test \ - -v $(shell docker run --rm -ti -v ${CURDIR}:/go/src/gitlab-odx.oracle.com/odx/functions -w /go/src/gitlab-odx.oracle.com/odx/functions -e GOPATH=/go golang:alpine sh -c 'go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v fn') + -v $(shell docker run --rm -ti -v ${CURDIR}:/go/src/github.com/fnproject/fn -w /go/src/github.com/fnproject/fn -e GOPATH=/go golang:alpine sh -c 'go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v fn') all: dep build diff --git a/README.md b/README.md index aa94d0328..9cc33f85d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Oracle Functions [![build status](https://gitlab-odx.oracle.com/odx/functions/badges/master/build.svg)](https://gitlab-odx.oracle.com/odx/functions/commits/master) +# Oracle Functions [![build status](https://github.com/fnproject/fn/badges/master/build.svg)](https://github.com/fnproject/fn/commits/master) @@ -52,7 +52,7 @@ export API_URL=http://129.146.10.253:80 Download the pre-built CLI binary: -1. Visit: https://gitlab-odx.oracle.com/odx/functions/tree/master/fn/releases/download/0.3.2 +1. Visit: https://github.com/fnproject/fn/tree/master/fn/releases/download/0.3.2 2. Download the CLI for your platform 3. Put in /usr/local/bin 4. chmod +x @@ -139,7 +139,7 @@ you can update your code and run `fn deploy myapp` again. - TODO: Slack or Discord community - Learn how to [contribute](CONTRIBUTING.md) -- See [milestones](https://gitlab-odx.oracle.com/odx/functions/milestones) for detailed issues +- See [milestones](https://github.com/fnproject/fn/milestones) for detailed issues ## User Interface diff --git a/api/datastore/datastore.go b/api/datastore/datastore.go index 6b0a80242..d44bee597 100644 --- a/api/datastore/datastore.go +++ b/api/datastore/datastore.go @@ -5,9 +5,9 @@ import ( "net/url" "github.com/Sirupsen/logrus" - "gitlab-odx.oracle.com/odx/functions/api/datastore/internal/datastoreutil" - "gitlab-odx.oracle.com/odx/functions/api/datastore/sql" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/datastore/internal/datastoreutil" + "github.com/fnproject/fn/api/datastore/sql" + "github.com/fnproject/fn/api/models" ) func New(dbURL string) (models.Datastore, error) { diff --git a/api/datastore/internal/datastoretest/test.go b/api/datastore/internal/datastoretest/test.go index 172b1e073..00c297b6d 100644 --- a/api/datastore/internal/datastoretest/test.go +++ b/api/datastore/internal/datastoretest/test.go @@ -6,8 +6,8 @@ import ( "log" "testing" - "gitlab-odx.oracle.com/odx/functions/api/id" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/id" + "github.com/fnproject/fn/api/models" "net/http" "reflect" diff --git a/api/datastore/internal/datastoreutil/metrics.go b/api/datastore/internal/datastoreutil/metrics.go index 057f705e6..877053c73 100644 --- a/api/datastore/internal/datastoreutil/metrics.go +++ b/api/datastore/internal/datastoreutil/metrics.go @@ -5,7 +5,7 @@ import ( "github.com/jmoiron/sqlx" "github.com/opentracing/opentracing-go" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) func MetricDS(ds models.Datastore) models.Datastore { diff --git a/api/datastore/internal/datastoreutil/validator.go b/api/datastore/internal/datastoreutil/validator.go index 7f2a9abb4..051ee9662 100644 --- a/api/datastore/internal/datastoreutil/validator.go +++ b/api/datastore/internal/datastoreutil/validator.go @@ -5,7 +5,7 @@ import ( "github.com/jmoiron/sqlx" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) // NewValidator returns a models.Datastore which validates certain arguments before delegating to ds. diff --git a/api/datastore/mock.go b/api/datastore/mock.go index 4784fc800..e5d180056 100644 --- a/api/datastore/mock.go +++ b/api/datastore/mock.go @@ -5,9 +5,9 @@ import ( "github.com/jmoiron/sqlx" - "gitlab-odx.oracle.com/odx/functions/api/datastore/internal/datastoreutil" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/datastore/internal/datastoreutil" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" ) type mock struct { diff --git a/api/datastore/mock_test.go b/api/datastore/mock_test.go index bb6141722..b3442da35 100644 --- a/api/datastore/mock_test.go +++ b/api/datastore/mock_test.go @@ -3,7 +3,7 @@ package datastore import ( "testing" - "gitlab-odx.oracle.com/odx/functions/api/datastore/internal/datastoretest" + "github.com/fnproject/fn/api/datastore/internal/datastoretest" ) func TestDatastore(t *testing.T) { diff --git a/api/datastore/sql/sql.go b/api/datastore/sql/sql.go index 089ffbf60..660bf79db 100644 --- a/api/datastore/sql/sql.go +++ b/api/datastore/sql/sql.go @@ -20,7 +20,7 @@ import ( _ "github.com/lib/pq" "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) // this aims to be an ANSI-SQL compliant package that uses only question diff --git a/api/logs/log.go b/api/logs/log.go index 3d66b6058..644fbed20 100644 --- a/api/logs/log.go +++ b/api/logs/log.go @@ -5,8 +5,8 @@ import ( "net/url" "github.com/Sirupsen/logrus" - "gitlab-odx.oracle.com/odx/functions/api/datastore/sql" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/datastore/sql" + "github.com/fnproject/fn/api/models" ) func New(dbURL string) (models.FnLog, error) { diff --git a/api/logs/log_test.go b/api/logs/log_test.go index 850441b5f..07c8a453b 100644 --- a/api/logs/log_test.go +++ b/api/logs/log_test.go @@ -5,8 +5,8 @@ import ( "os" "testing" - "gitlab-odx.oracle.com/odx/functions/api/datastore/sql" - logTesting "gitlab-odx.oracle.com/odx/functions/api/logs/testing" + "github.com/fnproject/fn/api/datastore/sql" + logTesting "github.com/fnproject/fn/api/logs/testing" ) const tmpLogDb = "/tmp/func_test_log.db" diff --git a/api/logs/mock.go b/api/logs/mock.go index 5a3836b84..3b649b3cb 100644 --- a/api/logs/mock.go +++ b/api/logs/mock.go @@ -3,7 +3,7 @@ package logs import ( "context" "github.com/pkg/errors" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) type mock struct { diff --git a/api/logs/testing/test.go b/api/logs/testing/test.go index 6028991b4..6f61a785e 100644 --- a/api/logs/testing/test.go +++ b/api/logs/testing/test.go @@ -7,8 +7,8 @@ import ( "time" "github.com/go-openapi/strfmt" - "gitlab-odx.oracle.com/odx/functions/api/id" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/id" + "github.com/fnproject/fn/api/models" ) var testApp = &models.App{ diff --git a/api/logs/validator.go b/api/logs/validator.go index 1db23d628..3354cc7e3 100644 --- a/api/logs/validator.go +++ b/api/logs/validator.go @@ -3,7 +3,7 @@ package logs import ( "context" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) type FnLog interface { diff --git a/api/mqs/bolt.go b/api/mqs/bolt.go index b0be7860e..6e878a6a1 100644 --- a/api/mqs/bolt.go +++ b/api/mqs/bolt.go @@ -13,8 +13,8 @@ import ( "github.com/Sirupsen/logrus" "github.com/boltdb/bolt" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" ) type BoltDbMQ struct { diff --git a/api/mqs/ironmq.go b/api/mqs/ironmq.go index ec360d7f8..8f4afc3ac 100644 --- a/api/mqs/ironmq.go +++ b/api/mqs/ironmq.go @@ -12,7 +12,7 @@ import ( "github.com/Sirupsen/logrus" mq_config "github.com/iron-io/iron_go3/config" ironmq "github.com/iron-io/iron_go3/mq" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) type assoc struct { diff --git a/api/mqs/memory.go b/api/mqs/memory.go index 07e84d43d..64b5e5d30 100644 --- a/api/mqs/memory.go +++ b/api/mqs/memory.go @@ -9,8 +9,8 @@ import ( "github.com/Sirupsen/logrus" "github.com/google/btree" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" ) type MemoryMQ struct { diff --git a/api/mqs/mock.go b/api/mqs/mock.go index f5393b1cc..f2c4377e2 100644 --- a/api/mqs/mock.go +++ b/api/mqs/mock.go @@ -3,7 +3,7 @@ package mqs import ( "context" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) type Mock struct { diff --git a/api/mqs/new.go b/api/mqs/new.go index 528c045bd..ba2bcc08b 100644 --- a/api/mqs/new.go +++ b/api/mqs/new.go @@ -8,7 +8,7 @@ import ( "github.com/Sirupsen/logrus" "github.com/opentracing/opentracing-go" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) // New will parse the URL and return the correct MQ implementation. diff --git a/api/mqs/redis.go b/api/mqs/redis.go index d48bc1cc0..9bb2d674b 100644 --- a/api/mqs/redis.go +++ b/api/mqs/redis.go @@ -11,8 +11,8 @@ import ( "github.com/Sirupsen/logrus" "github.com/garyburd/redigo/redis" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" ) type RedisMQ struct { diff --git a/api/runner/async_runner.go b/api/runner/async_runner.go index dc5b6b685..0cf0d1f0b 100644 --- a/api/runner/async_runner.go +++ b/api/runner/async_runner.go @@ -16,9 +16,9 @@ import ( "github.com/Sirupsen/logrus" "github.com/opentracing/opentracing-go" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" + "github.com/fnproject/fn/api/runner/task" ) func getTask(ctx context.Context, url string) (*models.Task, error) { diff --git a/api/runner/async_runner_test.go b/api/runner/async_runner_test.go index 330f93a03..14d1907e3 100644 --- a/api/runner/async_runner_test.go +++ b/api/runner/async_runner_test.go @@ -15,12 +15,12 @@ import ( "github.com/Sirupsen/logrus" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" + "github.com/fnproject/fn/api/runner/drivers" + "github.com/fnproject/fn/api/runner/task" ) func setLogBuffer() *bytes.Buffer { diff --git a/api/runner/common/environment.go b/api/runner/common/environment.go index 0c5a939ee..2f61caddb 100644 --- a/api/runner/common/environment.go +++ b/api/runner/common/environment.go @@ -1,7 +1,7 @@ package common import ( - "gitlab-odx.oracle.com/odx/functions/api/runner/common/stats" + "github.com/fnproject/fn/api/runner/common/stats" ) // An Environment is a long lived object that carries around 'configuration' diff --git a/api/runner/drivers/docker/docker.go b/api/runner/drivers/docker/docker.go index 441da4eea..98342b543 100644 --- a/api/runner/drivers/docker/docker.go +++ b/api/runner/drivers/docker/docker.go @@ -18,8 +18,8 @@ import ( "github.com/fsouza/go-dockerclient" "github.com/heroku/docker-registry-client/registry" "github.com/opentracing/opentracing-go" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" + "github.com/fnproject/fn/api/runner/common" + "github.com/fnproject/fn/api/runner/drivers" ) const hubURL = "https://registry.hub.docker.com" diff --git a/api/runner/drivers/docker/docker_client.go b/api/runner/drivers/docker/docker_client.go index b436fe06d..f7a0ddb24 100644 --- a/api/runner/drivers/docker/docker_client.go +++ b/api/runner/drivers/docker/docker_client.go @@ -16,7 +16,7 @@ import ( "github.com/fsouza/go-dockerclient" "github.com/opentracing/opentracing-go" "github.com/opentracing/opentracing-go/log" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/runner/common" ) const ( diff --git a/api/runner/drivers/docker/docker_test.go b/api/runner/drivers/docker/docker_test.go index 3a8fd8ebb..4f9734635 100644 --- a/api/runner/drivers/docker/docker_test.go +++ b/api/runner/drivers/docker/docker_test.go @@ -10,8 +10,8 @@ import ( "time" "github.com/vrischmann/envconfig" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" + "github.com/fnproject/fn/api/runner/common" + "github.com/fnproject/fn/api/runner/drivers" ) type taskDockerTest struct { diff --git a/api/runner/drivers/mock/mocker.go b/api/runner/drivers/mock/mocker.go index 9060d6c02..666aa10c1 100644 --- a/api/runner/drivers/mock/mocker.go +++ b/api/runner/drivers/mock/mocker.go @@ -5,7 +5,7 @@ import ( "fmt" "time" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" + "github.com/fnproject/fn/api/runner/drivers" ) func New() drivers.Driver { diff --git a/api/runner/func_logger.go b/api/runner/func_logger.go index 1c8594784..58bdd274f 100644 --- a/api/runner/func_logger.go +++ b/api/runner/func_logger.go @@ -9,8 +9,8 @@ import ( "sync" "github.com/Sirupsen/logrus" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" ) // TODO kind of no reason to have FuncLogger interface... we can just do the thing. diff --git a/api/runner/protocol/default.go b/api/runner/protocol/default.go index 80bceaa53..7795d0dcc 100644 --- a/api/runner/protocol/default.go +++ b/api/runner/protocol/default.go @@ -3,7 +3,7 @@ package protocol import ( "context" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/runner/task" ) // DefaultProtocol is the protocol used by cold-containers diff --git a/api/runner/protocol/factory.go b/api/runner/protocol/factory.go index 6f3078741..1f3b86325 100644 --- a/api/runner/protocol/factory.go +++ b/api/runner/protocol/factory.go @@ -5,8 +5,8 @@ import ( "errors" "io" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/task" ) var errInvalidProtocol = errors.New("Invalid Protocol") diff --git a/api/runner/protocol/http.go b/api/runner/protocol/http.go index d938e3f25..989d08616 100644 --- a/api/runner/protocol/http.go +++ b/api/runner/protocol/http.go @@ -10,8 +10,8 @@ import ( "net/http/httputil" "time" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/task" ) // HTTPProtocol converts stdin/stdout streams into HTTP/1.1 compliant diff --git a/api/runner/runner.go b/api/runner/runner.go index aa335d459..360a0d641 100644 --- a/api/runner/runner.go +++ b/api/runner/runner.go @@ -16,12 +16,12 @@ import ( "github.com/Sirupsen/logrus" "github.com/opentracing/opentracing-go" "github.com/opentracing/opentracing-go/log" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers/docker" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers/mock" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" + "github.com/fnproject/fn/api/runner/drivers" + "github.com/fnproject/fn/api/runner/drivers/docker" + "github.com/fnproject/fn/api/runner/drivers/mock" + "github.com/fnproject/fn/api/runner/task" ) // TODO clean all of this up, the exposed API is huge and incohesive, diff --git a/api/runner/runner_test.go b/api/runner/runner_test.go index d0f408be4..5eae9f05c 100644 --- a/api/runner/runner_test.go +++ b/api/runner/runner_test.go @@ -8,11 +8,11 @@ import ( "testing" "time" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/id" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/id" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/task" ) func TestRunnerHello(t *testing.T) { diff --git a/api/runner/task.go b/api/runner/task.go index c717fee8b..5e347b2e4 100644 --- a/api/runner/task.go +++ b/api/runner/task.go @@ -11,8 +11,8 @@ import ( "github.com/docker/cli/cli/config/configfile" docker "github.com/fsouza/go-dockerclient" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/runner/drivers" + "github.com/fnproject/fn/api/runner/task" ) var registries dockerRegistries diff --git a/api/runner/task/task.go b/api/runner/task/task.go index 37def5e52..219c586a2 100644 --- a/api/runner/task/task.go +++ b/api/runner/task/task.go @@ -5,7 +5,7 @@ import ( "io" "time" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" + "github.com/fnproject/fn/api/runner/drivers" ) type Config struct { diff --git a/api/runner/worker.go b/api/runner/worker.go index f4d70d8de..0ad57b13b 100644 --- a/api/runner/worker.go +++ b/api/runner/worker.go @@ -11,11 +11,11 @@ import ( "github.com/Sirupsen/logrus" "github.com/go-openapi/strfmt" "github.com/opentracing/opentracing-go" - "gitlab-odx.oracle.com/odx/functions/api/id" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/drivers" - "gitlab-odx.oracle.com/odx/functions/api/runner/protocol" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api/id" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/drivers" + "github.com/fnproject/fn/api/runner/protocol" + "github.com/fnproject/fn/api/runner/task" ) // hot functions - theory of operation diff --git a/api/server/app_listeners.go b/api/server/app_listeners.go index f80b675d4..fdfa3505d 100644 --- a/api/server/app_listeners.go +++ b/api/server/app_listeners.go @@ -3,7 +3,7 @@ package server import ( "context" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) // AppListener is an interface used to inject custom code at key points in app lifecycle. diff --git a/api/server/apps_create.go b/api/server/apps_create.go index d8fca1189..0f728e390 100644 --- a/api/server/apps_create.go +++ b/api/server/apps_create.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) func (s *Server) handleAppCreate(c *gin.Context) { diff --git a/api/server/apps_delete.go b/api/server/apps_delete.go index a260747a6..e6633451d 100644 --- a/api/server/apps_delete.go +++ b/api/server/apps_delete.go @@ -4,9 +4,9 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" ) func (s *Server) handleAppDelete(c *gin.Context) { diff --git a/api/server/apps_get.go b/api/server/apps_get.go index a6af705db..f2ecab6d0 100644 --- a/api/server/apps_get.go +++ b/api/server/apps_get.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" + "github.com/fnproject/fn/api" ) func (s *Server) handleAppGet(c *gin.Context) { diff --git a/api/server/apps_list.go b/api/server/apps_list.go index 851e23830..a5b3fadc2 100644 --- a/api/server/apps_list.go +++ b/api/server/apps_list.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) func (s *Server) handleAppList(c *gin.Context) { diff --git a/api/server/apps_test.go b/api/server/apps_test.go index 004fdd090..db2045806 100644 --- a/api/server/apps_test.go +++ b/api/server/apps_test.go @@ -9,10 +9,10 @@ import ( "github.com/Sirupsen/logrus" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" ) func setLogBuffer() *bytes.Buffer { diff --git a/api/server/apps_update.go b/api/server/apps_update.go index 1d1e0fb8e..796d89da6 100644 --- a/api/server/apps_update.go +++ b/api/server/apps_update.go @@ -4,8 +4,8 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/models" ) func (s *Server) handleAppUpdate(c *gin.Context) { diff --git a/api/server/call_get.go b/api/server/call_get.go index 6131918bd..c9a33ece4 100644 --- a/api/server/call_get.go +++ b/api/server/call_get.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" + "github.com/fnproject/fn/api" ) func (s *Server) handleCallGet(c *gin.Context) { diff --git a/api/server/call_list.go b/api/server/call_list.go index 611f67cfa..e151f58ff 100644 --- a/api/server/call_list.go +++ b/api/server/call_list.go @@ -4,8 +4,8 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/models" ) func (s *Server) handleCallList(c *gin.Context) { diff --git a/api/server/call_logs.go b/api/server/call_logs.go index c9b0beb33..101cd2158 100644 --- a/api/server/call_logs.go +++ b/api/server/call_logs.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" + "github.com/fnproject/fn/api" ) func (s *Server) handleCallLogGet(c *gin.Context) { diff --git a/api/server/error_response.go b/api/server/error_response.go index 7cfceea98..200e0b673 100644 --- a/api/server/error_response.go +++ b/api/server/error_response.go @@ -7,8 +7,8 @@ import ( "github.com/Sirupsen/logrus" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner/common" ) // ErrInternalServerError returned when something exceptional happens. diff --git a/api/server/extension_points.go b/api/server/extension_points.go index df5704f1d..e329e62c7 100644 --- a/api/server/extension_points.go +++ b/api/server/extension_points.go @@ -5,8 +5,8 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/models" ) type ApiHandlerFunc func(w http.ResponseWriter, r *http.Request) diff --git a/api/server/middleware.go b/api/server/middleware.go index 97f1318b8..c3416c00a 100644 --- a/api/server/middleware.go +++ b/api/server/middleware.go @@ -4,7 +4,7 @@ import ( "context" "net/http" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api/runner/common" "github.com/gin-gonic/gin" ) diff --git a/api/server/routes_create_update.go b/api/server/routes_create_update.go index 06dccdf15..59c2c1c1a 100644 --- a/api/server/routes_create_update.go +++ b/api/server/routes_create_update.go @@ -7,8 +7,8 @@ import ( "strings" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/models" ) /* handleRouteCreateOrUpdate is used to handle POST PUT and PATCH for routes. diff --git a/api/server/routes_delete.go b/api/server/routes_delete.go index 9749342cb..057c42ffd 100644 --- a/api/server/routes_delete.go +++ b/api/server/routes_delete.go @@ -5,7 +5,7 @@ import ( "path" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" + "github.com/fnproject/fn/api" ) func (s *Server) handleRouteDelete(c *gin.Context) { diff --git a/api/server/routes_get.go b/api/server/routes_get.go index b5444caf0..f9dc4ab4e 100644 --- a/api/server/routes_get.go +++ b/api/server/routes_get.go @@ -5,7 +5,7 @@ import ( "path" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" + "github.com/fnproject/fn/api" ) func (s *Server) handleRouteGet(c *gin.Context) { diff --git a/api/server/routes_list.go b/api/server/routes_list.go index 7f8a091f5..c6ce593b0 100644 --- a/api/server/routes_list.go +++ b/api/server/routes_list.go @@ -4,8 +4,8 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/models" ) func (s *Server) handleRouteList(c *gin.Context) { diff --git a/api/server/routes_test.go b/api/server/routes_test.go index 8a7759baa..e448cdec1 100644 --- a/api/server/routes_test.go +++ b/api/server/routes_test.go @@ -6,10 +6,10 @@ import ( "strings" "testing" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" ) type routeTestCase struct { diff --git a/api/server/runner.go b/api/server/runner.go index b7a700df1..fa5825242 100644 --- a/api/server/runner.go +++ b/api/server/runner.go @@ -15,12 +15,12 @@ import ( "github.com/gin-gonic/gin" "github.com/go-openapi/strfmt" cache "github.com/patrickmn/go-cache" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/id" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/runner" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" - "gitlab-odx.oracle.com/odx/functions/api/runner/task" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/id" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/runner" + "github.com/fnproject/fn/api/runner/common" + "github.com/fnproject/fn/api/runner/task" ) type runnerResponse struct { diff --git a/api/server/runner_async_test.go b/api/server/runner_async_test.go index 2df3fd168..2303c6d90 100644 --- a/api/server/runner_async_test.go +++ b/api/server/runner_async_test.go @@ -11,10 +11,10 @@ import ( "github.com/gin-gonic/gin" cache "github.com/patrickmn/go-cache" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" - "gitlab-odx.oracle.com/odx/functions/api/runner" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" + "github.com/fnproject/fn/api/runner" ) func testRouterAsync(ds models.Datastore, mq models.MessageQueue, rnr *runner.Runner, enqueue models.Enqueue) *gin.Engine { diff --git a/api/server/runner_listeners.go b/api/server/runner_listeners.go index d9e6a3abb..2934ae2ca 100644 --- a/api/server/runner_listeners.go +++ b/api/server/runner_listeners.go @@ -2,7 +2,7 @@ package server import ( "context" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) type RunnerListener interface { diff --git a/api/server/runner_test.go b/api/server/runner_test.go index de12b54d2..f76fc2e82 100644 --- a/api/server/runner_test.go +++ b/api/server/runner_test.go @@ -8,11 +8,11 @@ import ( "testing" "errors" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" - "gitlab-odx.oracle.com/odx/functions/api/runner" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" + "github.com/fnproject/fn/api/runner" ) func testRunner(t *testing.T) (*runner.Runner, context.CancelFunc) { diff --git a/api/server/server.go b/api/server/server.go index b98a82bc3..7bf693e1f 100644 --- a/api/server/server.go +++ b/api/server/server.go @@ -20,14 +20,14 @@ import ( "github.com/openzipkin/zipkin-go-opentracing" "github.com/patrickmn/go-cache" "github.com/spf13/viper" - "gitlab-odx.oracle.com/odx/functions/api" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/id" - "gitlab-odx.oracle.com/odx/functions/api/logs" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" - "gitlab-odx.oracle.com/odx/functions/api/runner" - "gitlab-odx.oracle.com/odx/functions/api/runner/common" + "github.com/fnproject/fn/api" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/id" + "github.com/fnproject/fn/api/logs" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" + "github.com/fnproject/fn/api/runner" + "github.com/fnproject/fn/api/runner/common" ) const ( diff --git a/api/server/server_test.go b/api/server/server_test.go index 78c81abaf..a8ca70bbe 100644 --- a/api/server/server_test.go +++ b/api/server/server_test.go @@ -14,10 +14,10 @@ import ( "github.com/gin-gonic/gin" cache "github.com/patrickmn/go-cache" - "gitlab-odx.oracle.com/odx/functions/api/datastore" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/mqs" - "gitlab-odx.oracle.com/odx/functions/api/runner" + "github.com/fnproject/fn/api/datastore" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/mqs" + "github.com/fnproject/fn/api/runner" ) var tmpDatastoreTests = "/tmp/func_test_datastore.db" diff --git a/api/server/special_handler.go b/api/server/special_handler.go index 831c4bf6a..e19f09d7f 100644 --- a/api/server/special_handler.go +++ b/api/server/special_handler.go @@ -3,7 +3,7 @@ package server import ( "net/http" - "gitlab-odx.oracle.com/odx/functions/api/models" + "github.com/fnproject/fn/api/models" ) // SpecialHandler verysimilar to a handler but since it is not used as middle ware no way diff --git a/api/server/version.go b/api/server/version.go index 104192399..2d9a3d6af 100644 --- a/api/server/version.go +++ b/api/server/version.go @@ -4,7 +4,7 @@ import ( "net/http" "github.com/gin-gonic/gin" - "gitlab-odx.oracle.com/odx/functions/api/version" + "github.com/fnproject/fn/api/version" ) func handleVersion(c *gin.Context) { diff --git a/fn/.gitignore b/cli/.gitignore similarity index 100% rename from fn/.gitignore rename to cli/.gitignore diff --git a/fn/CONTRIBUTING.md b/cli/CONTRIBUTING.md similarity index 100% rename from fn/CONTRIBUTING.md rename to cli/CONTRIBUTING.md diff --git a/fn/Dockerfile b/cli/Dockerfile similarity index 100% rename from fn/Dockerfile rename to cli/Dockerfile diff --git a/fn/Makefile b/cli/Makefile similarity index 72% rename from fn/Makefile rename to cli/Makefile index ce3b7a610..40440f1db 100644 --- a/fn/Makefile +++ b/cli/Makefile @@ -25,4 +25,4 @@ release: GOOS=linux go build -o fn_linux GOOS=darwin go build -o fn_mac GOOS=windows go build -o fn.exe - docker run --rm -v ${PWD}:/go/src/gitlab-odx.oracle.com/odx/functions/fn -w /go/src/gitlab-odx.oracle.com/odx/functions/fn funcy/go:dev go build -o fn_alpine + docker run --rm -v ${PWD}:/go/src/github.com/fnproject/fn/cli -w /go/src/github.com/fnproject/fn/cli funcy/go:dev go build -o fn_alpine diff --git a/fn/README.md b/cli/README.md similarity index 100% rename from fn/README.md rename to cli/README.md diff --git a/fn/apps.go b/cli/apps.go similarity index 99% rename from fn/apps.go rename to cli/apps.go index f1d30394a..b2fe80d71 100644 --- a/fn/apps.go +++ b/cli/apps.go @@ -9,12 +9,12 @@ import ( "context" "strings" + client "github.com/fnproject/fn/cli/client" fnclient "github.com/funcy/functions_go/client" apiapps "github.com/funcy/functions_go/client/apps" "github.com/funcy/functions_go/models" "github.com/jmoiron/jsonq" "github.com/urfave/cli" - client "gitlab-odx.oracle.com/odx/functions/fn/client" ) type appsCmd struct { diff --git a/fn/build.go b/cli/build.go similarity index 100% rename from fn/build.go rename to cli/build.go diff --git a/fn/bump.go b/cli/bump.go similarity index 100% rename from fn/bump.go rename to cli/bump.go diff --git a/fn/calls.go b/cli/calls.go similarity index 97% rename from fn/calls.go rename to cli/calls.go index 1bf4f91f5..e9cd2b64d 100644 --- a/fn/calls.go +++ b/cli/calls.go @@ -8,7 +8,7 @@ import ( apicall "github.com/funcy/functions_go/client/call" "github.com/funcy/functions_go/models" "github.com/urfave/cli" - client "gitlab-odx.oracle.com/odx/functions/fn/client" + client "github.com/fnproject/fn/cli/client" ) type callsCmd struct { diff --git a/fn/client/api.go b/cli/client/api.go similarity index 100% rename from fn/client/api.go rename to cli/client/api.go diff --git a/fn/client/call_fn.go b/cli/client/call_fn.go similarity index 100% rename from fn/client/call_fn.go rename to cli/client/call_fn.go diff --git a/fn/common.go b/cli/common.go similarity index 99% rename from fn/common.go rename to cli/common.go index 544360d6d..bcde45957 100644 --- a/fn/common.go +++ b/cli/common.go @@ -16,7 +16,7 @@ import ( "github.com/coreos/go-semver/semver" - "gitlab-odx.oracle.com/odx/functions/fn/langs" + "github.com/fnproject/fn/cli/langs" ) const ( diff --git a/fn/deploy.go b/cli/deploy.go similarity index 98% rename from fn/deploy.go rename to cli/deploy.go index 12007daba..833e82698 100644 --- a/fn/deploy.go +++ b/cli/deploy.go @@ -13,7 +13,7 @@ import ( functions "github.com/funcy/functions_go" "github.com/funcy/functions_go/models" "github.com/urfave/cli" - client "gitlab-odx.oracle.com/odx/functions/fn/client" + client "github.com/fnproject/fn/cli/client" ) func deploy() cli.Command { diff --git a/fn/entrypoint.sh b/cli/entrypoint.sh similarity index 100% rename from fn/entrypoint.sh rename to cli/entrypoint.sh diff --git a/fn/errors.go b/cli/errors.go similarity index 100% rename from fn/errors.go rename to cli/errors.go diff --git a/fn/funcfile.go b/cli/funcfile.go similarity index 100% rename from fn/funcfile.go rename to cli/funcfile.go diff --git a/fn/glide.lock b/cli/glide.lock similarity index 100% rename from fn/glide.lock rename to cli/glide.lock diff --git a/fn/glide.yaml b/cli/glide.yaml similarity index 95% rename from fn/glide.yaml rename to cli/glide.yaml index f74a6a969..91b3ac7b2 100644 --- a/fn/glide.yaml +++ b/cli/glide.yaml @@ -1,4 +1,4 @@ -package: gitlab-odx.oracle.com/odx/functions/fn +package: github.com/fnproject/fn/cli import: - package: github.com/Sirupsen/logrus repo: https://github.com/sirupsen/logrus diff --git a/fn/images.go b/cli/images.go similarity index 100% rename from fn/images.go rename to cli/images.go diff --git a/fn/init.go b/cli/init.go similarity index 99% rename from fn/init.go rename to cli/init.go index ab94b3df5..e041dc70f 100644 --- a/fn/init.go +++ b/cli/init.go @@ -18,7 +18,7 @@ import ( "strings" "github.com/urfave/cli" - "gitlab-odx.oracle.com/odx/functions/fn/langs" + "github.com/fnproject/fn/cli/langs" ) var ( diff --git a/fn/install b/cli/install similarity index 94% rename from fn/install rename to cli/install index 338d8730e..bfd85070d 100755 --- a/fn/install +++ b/cli/install @@ -54,7 +54,7 @@ else exit 1 fi -url='https://gitlab-odx.oracle.com/odx/functions/fn/releases/download' +url='https://github.com/fnproject/fn/cli/releases/download' # perform some very rudimentary platform detection case "$(uname)" in @@ -84,7 +84,7 @@ cat >&2 <<'EOF' installer script (yet - PRs welcome! [fn/install]). Please visit the following URL for more detailed installation instructions: - https://gitlab-odx.oracle.com/odx/functions + https://github.com/fnproject/fn EOF exit 1 diff --git a/fn/install.sh b/cli/install.sh similarity index 94% rename from fn/install.sh rename to cli/install.sh index 338d8730e..bfd85070d 100644 --- a/fn/install.sh +++ b/cli/install.sh @@ -54,7 +54,7 @@ else exit 1 fi -url='https://gitlab-odx.oracle.com/odx/functions/fn/releases/download' +url='https://github.com/fnproject/fn/cli/releases/download' # perform some very rudimentary platform detection case "$(uname)" in @@ -84,7 +84,7 @@ cat >&2 <<'EOF' installer script (yet - PRs welcome! [fn/install]). Please visit the following URL for more detailed installation instructions: - https://gitlab-odx.oracle.com/odx/functions + https://github.com/fnproject/fn EOF exit 1 diff --git a/fn/lambda.go b/cli/lambda.go similarity index 100% rename from fn/lambda.go rename to cli/lambda.go diff --git a/fn/lambda/node-4/Dockerfile b/cli/lambda/node-4/Dockerfile similarity index 100% rename from fn/lambda/node-4/Dockerfile rename to cli/lambda/node-4/Dockerfile diff --git a/fn/lambda/node-4/bootstrap.js b/cli/lambda/node-4/bootstrap.js similarity index 100% rename from fn/lambda/node-4/bootstrap.js rename to cli/lambda/node-4/bootstrap.js diff --git a/fn/lambda/node-4/build.sh b/cli/lambda/node-4/build.sh similarity index 100% rename from fn/lambda/node-4/build.sh rename to cli/lambda/node-4/build.sh diff --git a/fn/lambda/node-4/release.sh b/cli/lambda/node-4/release.sh similarity index 100% rename from fn/lambda/node-4/release.sh rename to cli/lambda/node-4/release.sh diff --git a/fn/lambda/node-6/Dockerfile b/cli/lambda/node-6/Dockerfile similarity index 100% rename from fn/lambda/node-6/Dockerfile rename to cli/lambda/node-6/Dockerfile diff --git a/fn/lambda/node-6/build.sh b/cli/lambda/node-6/build.sh similarity index 100% rename from fn/lambda/node-6/build.sh rename to cli/lambda/node-6/build.sh diff --git a/fn/lambda/node-6/release.sh b/cli/lambda/node-6/release.sh similarity index 100% rename from fn/lambda/node-6/release.sh rename to cli/lambda/node-6/release.sh diff --git a/fn/lambda/release.sh b/cli/lambda/release.sh similarity index 100% rename from fn/lambda/release.sh rename to cli/lambda/release.sh diff --git a/fn/langs/base.go b/cli/langs/base.go similarity index 100% rename from fn/langs/base.go rename to cli/langs/base.go diff --git a/fn/langs/dotnet.go b/cli/langs/dotnet.go similarity index 100% rename from fn/langs/dotnet.go rename to cli/langs/dotnet.go diff --git a/fn/langs/go.go b/cli/langs/go.go similarity index 100% rename from fn/langs/go.go rename to cli/langs/go.go diff --git a/fn/langs/java.go b/cli/langs/java.go similarity index 100% rename from fn/langs/java.go rename to cli/langs/java.go diff --git a/fn/langs/lambda_node.go b/cli/langs/lambda_node.go similarity index 100% rename from fn/langs/lambda_node.go rename to cli/langs/lambda_node.go diff --git a/fn/langs/node.go b/cli/langs/node.go similarity index 100% rename from fn/langs/node.go rename to cli/langs/node.go diff --git a/fn/langs/php.go b/cli/langs/php.go similarity index 100% rename from fn/langs/php.go rename to cli/langs/php.go diff --git a/fn/langs/python.go b/cli/langs/python.go similarity index 100% rename from fn/langs/python.go rename to cli/langs/python.go diff --git a/fn/langs/ruby.go b/cli/langs/ruby.go similarity index 100% rename from fn/langs/ruby.go rename to cli/langs/ruby.go diff --git a/fn/langs/rust.go b/cli/langs/rust.go similarity index 100% rename from fn/langs/rust.go rename to cli/langs/rust.go diff --git a/fn/main.go b/cli/main.go similarity index 96% rename from fn/main.go rename to cli/main.go index 3966c223e..3d97eadfd 100644 --- a/fn/main.go +++ b/cli/main.go @@ -37,7 +37,7 @@ func newFn() *cli.App { app.Version = Version app.Authors = []cli.Author{{Name: "Oracle Corporation"}} app.Description = "Oracle Functions command line tools" - app.UsageText = `Check the manual at https://gitlab-odx.oracle.com/odx/functions/blob/master/fn/README.md` + app.UsageText = `Check the manual at https://github.com/fnproject/fn/blob/master/fn/README.md` cli.AppHelpTemplate = `{{.Name}} {{.Version}}{{if .Description}} diff --git a/fn/main_test.go b/cli/main_test.go similarity index 100% rename from fn/main_test.go rename to cli/main_test.go diff --git a/fn/push.go b/cli/push.go similarity index 100% rename from fn/push.go rename to cli/push.go diff --git a/fn/release.sh b/cli/release.sh similarity index 100% rename from fn/release.sh rename to cli/release.sh diff --git a/fn/routes.go b/cli/routes.go similarity index 99% rename from fn/routes.go rename to cli/routes.go index 99cd4908a..d7c82c2fc 100644 --- a/fn/routes.go +++ b/cli/routes.go @@ -16,7 +16,7 @@ import ( fnmodels "github.com/funcy/functions_go/models" "github.com/jmoiron/jsonq" "github.com/urfave/cli" - client "gitlab-odx.oracle.com/odx/functions/fn/client" + client "github.com/fnproject/fn/cli/client" ) type routesCmd struct { diff --git a/fn/routes_test.go b/cli/routes_test.go similarity index 90% rename from fn/routes_test.go rename to cli/routes_test.go index 1405d6a68..ebeba67d4 100644 --- a/fn/routes_test.go +++ b/cli/routes_test.go @@ -1,7 +1,7 @@ package main import ( - "gitlab-odx.oracle.com/odx/functions/fn/client" + "github.com/fnproject/fn/cli/client" "net/http" "os" "testing" diff --git a/fn/run.go b/cli/run.go similarity index 100% rename from fn/run.go rename to cli/run.go diff --git a/fn/run_others.go b/cli/run_others.go similarity index 100% rename from fn/run_others.go rename to cli/run_others.go diff --git a/fn/run_windows.go b/cli/run_windows.go similarity index 100% rename from fn/run_windows.go rename to cli/run_windows.go diff --git a/fn/start.go b/cli/start.go similarity index 100% rename from fn/start.go rename to cli/start.go diff --git a/fn/testfn.go b/cli/testfn.go similarity index 99% rename from fn/testfn.go rename to cli/testfn.go index 4d648a9be..797209c9e 100644 --- a/fn/testfn.go +++ b/cli/testfn.go @@ -15,7 +15,7 @@ import ( functions "github.com/funcy/functions_go" "github.com/onsi/gomega" "github.com/urfave/cli" - "gitlab-odx.oracle.com/odx/functions/fn/client" + "github.com/fnproject/fn/cli/client" ) type testStruct struct { diff --git a/fn/update.go b/cli/update.go similarity index 100% rename from fn/update.go rename to cli/update.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/LICENSE b/cli/vendor/github.com/Azure/go-ansiterm/LICENSE similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/LICENSE rename to cli/vendor/github.com/Azure/go-ansiterm/LICENSE diff --git a/fn/vendor/github.com/Azure/go-ansiterm/README.md b/cli/vendor/github.com/Azure/go-ansiterm/README.md similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/README.md rename to cli/vendor/github.com/Azure/go-ansiterm/README.md diff --git a/fn/vendor/github.com/Azure/go-ansiterm/constants.go b/cli/vendor/github.com/Azure/go-ansiterm/constants.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/constants.go rename to cli/vendor/github.com/Azure/go-ansiterm/constants.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/context.go b/cli/vendor/github.com/Azure/go-ansiterm/context.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/context.go rename to cli/vendor/github.com/Azure/go-ansiterm/context.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/csi_entry_state.go b/cli/vendor/github.com/Azure/go-ansiterm/csi_entry_state.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/csi_entry_state.go rename to cli/vendor/github.com/Azure/go-ansiterm/csi_entry_state.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/csi_param_state.go b/cli/vendor/github.com/Azure/go-ansiterm/csi_param_state.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/csi_param_state.go rename to cli/vendor/github.com/Azure/go-ansiterm/csi_param_state.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/escape_intermediate_state.go b/cli/vendor/github.com/Azure/go-ansiterm/escape_intermediate_state.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/escape_intermediate_state.go rename to cli/vendor/github.com/Azure/go-ansiterm/escape_intermediate_state.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/escape_state.go b/cli/vendor/github.com/Azure/go-ansiterm/escape_state.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/escape_state.go rename to cli/vendor/github.com/Azure/go-ansiterm/escape_state.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/event_handler.go b/cli/vendor/github.com/Azure/go-ansiterm/event_handler.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/event_handler.go rename to cli/vendor/github.com/Azure/go-ansiterm/event_handler.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/ground_state.go b/cli/vendor/github.com/Azure/go-ansiterm/ground_state.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/ground_state.go rename to cli/vendor/github.com/Azure/go-ansiterm/ground_state.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/osc_string_state.go b/cli/vendor/github.com/Azure/go-ansiterm/osc_string_state.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/osc_string_state.go rename to cli/vendor/github.com/Azure/go-ansiterm/osc_string_state.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/parser.go b/cli/vendor/github.com/Azure/go-ansiterm/parser.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/parser.go rename to cli/vendor/github.com/Azure/go-ansiterm/parser.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go b/cli/vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go rename to cli/vendor/github.com/Azure/go-ansiterm/parser_action_helpers.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/parser_actions.go b/cli/vendor/github.com/Azure/go-ansiterm/parser_actions.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/parser_actions.go rename to cli/vendor/github.com/Azure/go-ansiterm/parser_actions.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/parser_test.go b/cli/vendor/github.com/Azure/go-ansiterm/parser_test.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/parser_test.go rename to cli/vendor/github.com/Azure/go-ansiterm/parser_test.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/parser_test_helpers_test.go b/cli/vendor/github.com/Azure/go-ansiterm/parser_test_helpers_test.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/parser_test_helpers_test.go rename to cli/vendor/github.com/Azure/go-ansiterm/parser_test_helpers_test.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/parser_test_utilities_test.go b/cli/vendor/github.com/Azure/go-ansiterm/parser_test_utilities_test.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/parser_test_utilities_test.go rename to cli/vendor/github.com/Azure/go-ansiterm/parser_test_utilities_test.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/states.go b/cli/vendor/github.com/Azure/go-ansiterm/states.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/states.go rename to cli/vendor/github.com/Azure/go-ansiterm/states.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/test_event_handler_test.go b/cli/vendor/github.com/Azure/go-ansiterm/test_event_handler_test.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/test_event_handler_test.go rename to cli/vendor/github.com/Azure/go-ansiterm/test_event_handler_test.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/utilities.go b/cli/vendor/github.com/Azure/go-ansiterm/utilities.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/utilities.go rename to cli/vendor/github.com/Azure/go-ansiterm/utilities.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/ansi.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/api.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/api.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/api.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/api.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/attr_translation.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/cursor_helpers.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/erase_helpers.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/scroll_helper.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/scroll_helper.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/scroll_helper.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/scroll_helper.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/utilities.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/utilities.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/utilities.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/utilities.go diff --git a/fn/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go b/cli/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go similarity index 100% rename from fn/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go rename to cli/vendor/github.com/Azure/go-ansiterm/winterm/win_event_handler.go diff --git a/fn/vendor/github.com/Nvveen/Gotty/LICENSE b/cli/vendor/github.com/Nvveen/Gotty/LICENSE similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/LICENSE rename to cli/vendor/github.com/Nvveen/Gotty/LICENSE diff --git a/fn/vendor/github.com/Nvveen/Gotty/README b/cli/vendor/github.com/Nvveen/Gotty/README similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/README rename to cli/vendor/github.com/Nvveen/Gotty/README diff --git a/fn/vendor/github.com/Nvveen/Gotty/TODO b/cli/vendor/github.com/Nvveen/Gotty/TODO similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/TODO rename to cli/vendor/github.com/Nvveen/Gotty/TODO diff --git a/fn/vendor/github.com/Nvveen/Gotty/attributes.go b/cli/vendor/github.com/Nvveen/Gotty/attributes.go similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/attributes.go rename to cli/vendor/github.com/Nvveen/Gotty/attributes.go diff --git a/fn/vendor/github.com/Nvveen/Gotty/gotty.go b/cli/vendor/github.com/Nvveen/Gotty/gotty.go similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/gotty.go rename to cli/vendor/github.com/Nvveen/Gotty/gotty.go diff --git a/fn/vendor/github.com/Nvveen/Gotty/parser.go b/cli/vendor/github.com/Nvveen/Gotty/parser.go similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/parser.go rename to cli/vendor/github.com/Nvveen/Gotty/parser.go diff --git a/fn/vendor/github.com/Nvveen/Gotty/types.go b/cli/vendor/github.com/Nvveen/Gotty/types.go similarity index 100% rename from fn/vendor/github.com/Nvveen/Gotty/types.go rename to cli/vendor/github.com/Nvveen/Gotty/types.go diff --git a/fn/vendor/github.com/PuerkitoBio/purell/.gitignore b/cli/vendor/github.com/PuerkitoBio/purell/.gitignore similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/.gitignore rename to cli/vendor/github.com/PuerkitoBio/purell/.gitignore diff --git a/fn/vendor/github.com/PuerkitoBio/purell/.travis.yml b/cli/vendor/github.com/PuerkitoBio/purell/.travis.yml similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/.travis.yml rename to cli/vendor/github.com/PuerkitoBio/purell/.travis.yml diff --git a/fn/vendor/github.com/PuerkitoBio/purell/LICENSE b/cli/vendor/github.com/PuerkitoBio/purell/LICENSE similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/LICENSE rename to cli/vendor/github.com/PuerkitoBio/purell/LICENSE diff --git a/fn/vendor/github.com/PuerkitoBio/purell/README.md b/cli/vendor/github.com/PuerkitoBio/purell/README.md similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/README.md rename to cli/vendor/github.com/PuerkitoBio/purell/README.md diff --git a/fn/vendor/github.com/PuerkitoBio/purell/bench_test.go b/cli/vendor/github.com/PuerkitoBio/purell/bench_test.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/bench_test.go rename to cli/vendor/github.com/PuerkitoBio/purell/bench_test.go diff --git a/fn/vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0 b/cli/vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0 similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0 rename to cli/vendor/github.com/PuerkitoBio/purell/benchmarks/v0.1.0 diff --git a/fn/vendor/github.com/PuerkitoBio/purell/example_test.go b/cli/vendor/github.com/PuerkitoBio/purell/example_test.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/example_test.go rename to cli/vendor/github.com/PuerkitoBio/purell/example_test.go diff --git a/fn/vendor/github.com/PuerkitoBio/purell/purell.go b/cli/vendor/github.com/PuerkitoBio/purell/purell.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/purell.go rename to cli/vendor/github.com/PuerkitoBio/purell/purell.go diff --git a/fn/vendor/github.com/PuerkitoBio/purell/purell_test.go b/cli/vendor/github.com/PuerkitoBio/purell/purell_test.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/purell_test.go rename to cli/vendor/github.com/PuerkitoBio/purell/purell_test.go diff --git a/fn/vendor/github.com/PuerkitoBio/purell/urlnorm_test.go b/cli/vendor/github.com/PuerkitoBio/purell/urlnorm_test.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/purell/urlnorm_test.go rename to cli/vendor/github.com/PuerkitoBio/purell/urlnorm_test.go diff --git a/fn/vendor/github.com/PuerkitoBio/urlesc/.travis.yml b/cli/vendor/github.com/PuerkitoBio/urlesc/.travis.yml similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/urlesc/.travis.yml rename to cli/vendor/github.com/PuerkitoBio/urlesc/.travis.yml diff --git a/fn/vendor/github.com/PuerkitoBio/urlesc/LICENSE b/cli/vendor/github.com/PuerkitoBio/urlesc/LICENSE similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/urlesc/LICENSE rename to cli/vendor/github.com/PuerkitoBio/urlesc/LICENSE diff --git a/fn/vendor/github.com/PuerkitoBio/urlesc/README.md b/cli/vendor/github.com/PuerkitoBio/urlesc/README.md similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/urlesc/README.md rename to cli/vendor/github.com/PuerkitoBio/urlesc/README.md diff --git a/fn/vendor/github.com/PuerkitoBio/urlesc/urlesc.go b/cli/vendor/github.com/PuerkitoBio/urlesc/urlesc.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/urlesc/urlesc.go rename to cli/vendor/github.com/PuerkitoBio/urlesc/urlesc.go diff --git a/fn/vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go b/cli/vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go similarity index 100% rename from fn/vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go rename to cli/vendor/github.com/PuerkitoBio/urlesc/urlesc_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/.gitignore b/cli/vendor/github.com/Sirupsen/logrus/.gitignore similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/.gitignore rename to cli/vendor/github.com/Sirupsen/logrus/.gitignore diff --git a/fn/vendor/github.com/Sirupsen/logrus/.travis.yml b/cli/vendor/github.com/Sirupsen/logrus/.travis.yml similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/.travis.yml rename to cli/vendor/github.com/Sirupsen/logrus/.travis.yml diff --git a/fn/vendor/github.com/Sirupsen/logrus/CHANGELOG.md b/cli/vendor/github.com/Sirupsen/logrus/CHANGELOG.md similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/CHANGELOG.md rename to cli/vendor/github.com/Sirupsen/logrus/CHANGELOG.md diff --git a/fn/vendor/github.com/Sirupsen/logrus/LICENSE b/cli/vendor/github.com/Sirupsen/logrus/LICENSE similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/LICENSE rename to cli/vendor/github.com/Sirupsen/logrus/LICENSE diff --git a/fn/vendor/github.com/Sirupsen/logrus/README.md b/cli/vendor/github.com/Sirupsen/logrus/README.md similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/README.md rename to cli/vendor/github.com/Sirupsen/logrus/README.md diff --git a/fn/vendor/github.com/Sirupsen/logrus/alt_exit.go b/cli/vendor/github.com/Sirupsen/logrus/alt_exit.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/alt_exit.go rename to cli/vendor/github.com/Sirupsen/logrus/alt_exit.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/alt_exit_test.go b/cli/vendor/github.com/Sirupsen/logrus/alt_exit_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/alt_exit_test.go rename to cli/vendor/github.com/Sirupsen/logrus/alt_exit_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/doc.go b/cli/vendor/github.com/Sirupsen/logrus/doc.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/doc.go rename to cli/vendor/github.com/Sirupsen/logrus/doc.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/entry.go b/cli/vendor/github.com/Sirupsen/logrus/entry.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/entry.go rename to cli/vendor/github.com/Sirupsen/logrus/entry.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/entry_test.go b/cli/vendor/github.com/Sirupsen/logrus/entry_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/entry_test.go rename to cli/vendor/github.com/Sirupsen/logrus/entry_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/examples/basic/basic.go b/cli/vendor/github.com/Sirupsen/logrus/examples/basic/basic.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/examples/basic/basic.go rename to cli/vendor/github.com/Sirupsen/logrus/examples/basic/basic.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/examples/hook/hook.go b/cli/vendor/github.com/Sirupsen/logrus/examples/hook/hook.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/examples/hook/hook.go rename to cli/vendor/github.com/Sirupsen/logrus/examples/hook/hook.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/exported.go b/cli/vendor/github.com/Sirupsen/logrus/exported.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/exported.go rename to cli/vendor/github.com/Sirupsen/logrus/exported.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/formatter.go b/cli/vendor/github.com/Sirupsen/logrus/formatter.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/formatter.go rename to cli/vendor/github.com/Sirupsen/logrus/formatter.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/formatter_bench_test.go b/cli/vendor/github.com/Sirupsen/logrus/formatter_bench_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/formatter_bench_test.go rename to cli/vendor/github.com/Sirupsen/logrus/formatter_bench_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/hook_test.go b/cli/vendor/github.com/Sirupsen/logrus/hook_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hook_test.go rename to cli/vendor/github.com/Sirupsen/logrus/hook_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/hooks.go b/cli/vendor/github.com/Sirupsen/logrus/hooks.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hooks.go rename to cli/vendor/github.com/Sirupsen/logrus/hooks.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md b/cli/vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md rename to cli/vendor/github.com/Sirupsen/logrus/hooks/syslog/README.md diff --git a/fn/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go b/cli/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go rename to cli/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go b/cli/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go rename to cli/vendor/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/hooks/test/test.go b/cli/vendor/github.com/Sirupsen/logrus/hooks/test/test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hooks/test/test.go rename to cli/vendor/github.com/Sirupsen/logrus/hooks/test/test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/hooks/test/test_test.go b/cli/vendor/github.com/Sirupsen/logrus/hooks/test/test_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/hooks/test/test_test.go rename to cli/vendor/github.com/Sirupsen/logrus/hooks/test/test_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/json_formatter.go b/cli/vendor/github.com/Sirupsen/logrus/json_formatter.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/json_formatter.go rename to cli/vendor/github.com/Sirupsen/logrus/json_formatter.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/json_formatter_test.go b/cli/vendor/github.com/Sirupsen/logrus/json_formatter_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/json_formatter_test.go rename to cli/vendor/github.com/Sirupsen/logrus/json_formatter_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/logger.go b/cli/vendor/github.com/Sirupsen/logrus/logger.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/logger.go rename to cli/vendor/github.com/Sirupsen/logrus/logger.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/logger_bench_test.go b/cli/vendor/github.com/Sirupsen/logrus/logger_bench_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/logger_bench_test.go rename to cli/vendor/github.com/Sirupsen/logrus/logger_bench_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/logrus.go b/cli/vendor/github.com/Sirupsen/logrus/logrus.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/logrus.go rename to cli/vendor/github.com/Sirupsen/logrus/logrus.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/logrus_test.go b/cli/vendor/github.com/Sirupsen/logrus/logrus_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/logrus_test.go rename to cli/vendor/github.com/Sirupsen/logrus/logrus_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/terminal_appengine.go b/cli/vendor/github.com/Sirupsen/logrus/terminal_appengine.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/terminal_appengine.go rename to cli/vendor/github.com/Sirupsen/logrus/terminal_appengine.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/terminal_bsd.go b/cli/vendor/github.com/Sirupsen/logrus/terminal_bsd.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/terminal_bsd.go rename to cli/vendor/github.com/Sirupsen/logrus/terminal_bsd.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/terminal_linux.go b/cli/vendor/github.com/Sirupsen/logrus/terminal_linux.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/terminal_linux.go rename to cli/vendor/github.com/Sirupsen/logrus/terminal_linux.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go b/cli/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go rename to cli/vendor/github.com/Sirupsen/logrus/terminal_notwindows.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/terminal_solaris.go b/cli/vendor/github.com/Sirupsen/logrus/terminal_solaris.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/terminal_solaris.go rename to cli/vendor/github.com/Sirupsen/logrus/terminal_solaris.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/terminal_windows.go b/cli/vendor/github.com/Sirupsen/logrus/terminal_windows.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/terminal_windows.go rename to cli/vendor/github.com/Sirupsen/logrus/terminal_windows.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/text_formatter.go b/cli/vendor/github.com/Sirupsen/logrus/text_formatter.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/text_formatter.go rename to cli/vendor/github.com/Sirupsen/logrus/text_formatter.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/text_formatter_test.go b/cli/vendor/github.com/Sirupsen/logrus/text_formatter_test.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/text_formatter_test.go rename to cli/vendor/github.com/Sirupsen/logrus/text_formatter_test.go diff --git a/fn/vendor/github.com/Sirupsen/logrus/writer.go b/cli/vendor/github.com/Sirupsen/logrus/writer.go similarity index 100% rename from fn/vendor/github.com/Sirupsen/logrus/writer.go rename to cli/vendor/github.com/Sirupsen/logrus/writer.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/.travis.yml b/cli/vendor/github.com/asaskevich/govalidator/.travis.yml similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/.travis.yml rename to cli/vendor/github.com/asaskevich/govalidator/.travis.yml diff --git a/fn/vendor/github.com/asaskevich/govalidator/LICENSE b/cli/vendor/github.com/asaskevich/govalidator/LICENSE similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/LICENSE rename to cli/vendor/github.com/asaskevich/govalidator/LICENSE diff --git a/fn/vendor/github.com/asaskevich/govalidator/README.md b/cli/vendor/github.com/asaskevich/govalidator/README.md similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/README.md rename to cli/vendor/github.com/asaskevich/govalidator/README.md diff --git a/fn/vendor/github.com/asaskevich/govalidator/arrays.go b/cli/vendor/github.com/asaskevich/govalidator/arrays.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/arrays.go rename to cli/vendor/github.com/asaskevich/govalidator/arrays.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/arrays_test.go b/cli/vendor/github.com/asaskevich/govalidator/arrays_test.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/arrays_test.go rename to cli/vendor/github.com/asaskevich/govalidator/arrays_test.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/converter.go b/cli/vendor/github.com/asaskevich/govalidator/converter.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/converter.go rename to cli/vendor/github.com/asaskevich/govalidator/converter.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/converter_test.go b/cli/vendor/github.com/asaskevich/govalidator/converter_test.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/converter_test.go rename to cli/vendor/github.com/asaskevich/govalidator/converter_test.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/error.go b/cli/vendor/github.com/asaskevich/govalidator/error.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/error.go rename to cli/vendor/github.com/asaskevich/govalidator/error.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/error_test.go b/cli/vendor/github.com/asaskevich/govalidator/error_test.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/error_test.go rename to cli/vendor/github.com/asaskevich/govalidator/error_test.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/numerics.go b/cli/vendor/github.com/asaskevich/govalidator/numerics.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/numerics.go rename to cli/vendor/github.com/asaskevich/govalidator/numerics.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/numerics_test.go b/cli/vendor/github.com/asaskevich/govalidator/numerics_test.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/numerics_test.go rename to cli/vendor/github.com/asaskevich/govalidator/numerics_test.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/patterns.go b/cli/vendor/github.com/asaskevich/govalidator/patterns.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/patterns.go rename to cli/vendor/github.com/asaskevich/govalidator/patterns.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/types.go b/cli/vendor/github.com/asaskevich/govalidator/types.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/types.go rename to cli/vendor/github.com/asaskevich/govalidator/types.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/utils.go b/cli/vendor/github.com/asaskevich/govalidator/utils.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/utils.go rename to cli/vendor/github.com/asaskevich/govalidator/utils.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/utils_test.go b/cli/vendor/github.com/asaskevich/govalidator/utils_test.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/utils_test.go rename to cli/vendor/github.com/asaskevich/govalidator/utils_test.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/validator.go b/cli/vendor/github.com/asaskevich/govalidator/validator.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/validator.go rename to cli/vendor/github.com/asaskevich/govalidator/validator.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/validator_test.go b/cli/vendor/github.com/asaskevich/govalidator/validator_test.go similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/validator_test.go rename to cli/vendor/github.com/asaskevich/govalidator/validator_test.go diff --git a/fn/vendor/github.com/asaskevich/govalidator/wercker.yml b/cli/vendor/github.com/asaskevich/govalidator/wercker.yml similarity index 100% rename from fn/vendor/github.com/asaskevich/govalidator/wercker.yml rename to cli/vendor/github.com/asaskevich/govalidator/wercker.yml diff --git a/fn/vendor/github.com/aws/aws-sdk-go/.github/ISSUE_TEMPLATE.md b/cli/vendor/github.com/aws/aws-sdk-go/.github/ISSUE_TEMPLATE.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/.github/ISSUE_TEMPLATE.md rename to cli/vendor/github.com/aws/aws-sdk-go/.github/ISSUE_TEMPLATE.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/.github/PULL_REQUEST_TEMPLATE.md b/cli/vendor/github.com/aws/aws-sdk-go/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/.github/PULL_REQUEST_TEMPLATE.md rename to cli/vendor/github.com/aws/aws-sdk-go/.github/PULL_REQUEST_TEMPLATE.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/.gitignore b/cli/vendor/github.com/aws/aws-sdk-go/.gitignore similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/.gitignore rename to cli/vendor/github.com/aws/aws-sdk-go/.gitignore diff --git a/fn/vendor/github.com/aws/aws-sdk-go/.godoc_config b/cli/vendor/github.com/aws/aws-sdk-go/.godoc_config similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/.godoc_config rename to cli/vendor/github.com/aws/aws-sdk-go/.godoc_config diff --git a/fn/vendor/github.com/aws/aws-sdk-go/.travis.yml b/cli/vendor/github.com/aws/aws-sdk-go/.travis.yml similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/.travis.yml rename to cli/vendor/github.com/aws/aws-sdk-go/.travis.yml diff --git a/fn/vendor/github.com/aws/aws-sdk-go/CHANGELOG.md b/cli/vendor/github.com/aws/aws-sdk-go/CHANGELOG.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/CHANGELOG.md rename to cli/vendor/github.com/aws/aws-sdk-go/CHANGELOG.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/CHANGELOG_PENDING.md b/cli/vendor/github.com/aws/aws-sdk-go/CHANGELOG_PENDING.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/CHANGELOG_PENDING.md rename to cli/vendor/github.com/aws/aws-sdk-go/CHANGELOG_PENDING.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/CONTRIBUTING.md b/cli/vendor/github.com/aws/aws-sdk-go/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/CONTRIBUTING.md rename to cli/vendor/github.com/aws/aws-sdk-go/CONTRIBUTING.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/LICENSE.txt b/cli/vendor/github.com/aws/aws-sdk-go/LICENSE.txt similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/LICENSE.txt rename to cli/vendor/github.com/aws/aws-sdk-go/LICENSE.txt diff --git a/fn/vendor/github.com/aws/aws-sdk-go/Makefile b/cli/vendor/github.com/aws/aws-sdk-go/Makefile similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/Makefile rename to cli/vendor/github.com/aws/aws-sdk-go/Makefile diff --git a/fn/vendor/github.com/aws/aws-sdk-go/NOTICE.txt b/cli/vendor/github.com/aws/aws-sdk-go/NOTICE.txt similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/NOTICE.txt rename to cli/vendor/github.com/aws/aws-sdk-go/NOTICE.txt diff --git a/fn/vendor/github.com/aws/aws-sdk-go/README.md b/cli/vendor/github.com/aws/aws-sdk-go/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awserr/error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awserr/types.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/copy_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/equal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/path_value_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/prettify.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/awsutil/string_value.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/client/client.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/client/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/client/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/client/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/client/client_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/client/client_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/client/client_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/client/client_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/client/default_retryer.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/client/logger.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/client/logger_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/client/logger_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/client/logger_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/client/logger_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/client/metadata/client_info.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/config.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/config.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/config.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/config.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/config_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/config_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/config_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/config_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/context.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/context.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/context.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/context.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/context_1_6.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/context_1_6.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/context_1_6.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/context_1_6.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/context_1_7.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/context_1_7.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/context_1_7.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/context_1_7.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/context_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/context_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/context_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/context_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/convert_types.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/convert_types_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_1_8_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_1_8_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_1_8_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_1_8_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/handlers_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/corehandlers/param_validator_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/chain_provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/credentials_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds/ec2_role_provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/endpointcreds/provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/env_provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/example.ini diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/doc_1_7.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/doc_1_7.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/doc_1_7.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/doc_1_7.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/plugincreds/provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/static_provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/credentials/stscreds/assume_role_provider_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/defaults/defaults_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/defaults/shared_config.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/defaults/shared_config.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/defaults/shared_config.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/defaults/shared_config.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/api_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/ec2metadata/service_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/decode_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/defaults.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/endpoints_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/example_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/example_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/example_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/example_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_codegen.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_codegen.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_codegen.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_codegen.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/endpoints/v3model_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/jsonvalue.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/logger.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/logger.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/logger.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/logger.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_other_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/connection_reset_error_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/handlers.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/handlers_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/http_request.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_copy_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/http_request_retry_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/offset_reader_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_5_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_5_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_5_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_5_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_6_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_7_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_1_8_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_context.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_context.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_context.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_context.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_1_6.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_1_6.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_1_6.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_1_6.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_context_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_internal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_internal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_internal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_internal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_pagination_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_resetbody_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_resetbody_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_resetbody_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_resetbody_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/request_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/retryer.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/retryer_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_benchmark_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_benchmark_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_benchmark_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_benchmark_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/timeout_read_closer_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/validation.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/waiter.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/request/waiter_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/request/waiter_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/request/waiter_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/request/waiter_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/custom_ca_bundle_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/custom_ca_bundle_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/custom_ca_bundle_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/custom_ca_bundle_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/env_config.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/env_config_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/session.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/session.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/session.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/session.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/session_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/shared_config_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_invalid_ini diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other b/cli/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other rename to cli/vendor/github.com/aws/aws-sdk-go/aws/session/testdata/shared_config_other diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_1_5_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_1_5_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_1_5_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_1_5_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/functional_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/header_rules_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/options.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/options.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/options.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/options.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/uri_path.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/uri_path.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/uri_path.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/uri_path.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/signer/v4/v4_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/types.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/types.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/types.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/types.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/types_test.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/types_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/types_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/types_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/url.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/url.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/url.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/url.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/url_1_7.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/url_1_7.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/url_1_7.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/url_1_7.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/aws/version.go b/cli/vendor/github.com/aws/aws-sdk-go/aws/version.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/aws/version.go rename to cli/vendor/github.com/aws/aws-sdk-go/aws/version.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Godeps.json b/cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Godeps.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Godeps.json rename to cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Godeps.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Readme b/cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Readme similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Readme rename to cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/Godeps/Readme diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/gen/gen.go b/cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/gen/gen.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/gen/gen.go rename to cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/gen/gen.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/rename.go b/cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/rename.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/rename.go rename to cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/rename.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/renames.go b/cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/renames.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/renames.go rename to cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/rename/renames.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/renamer.go b/cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/renamer.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/renamer.go rename to cli/vendor/github.com/aws/aws-sdk-go/awsmigrate/awsmigrate-renamer/renamer.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/assert.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/assert_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/cmd/bucket_cleanup/main.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/cmd/bucket_cleanup/main.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/cmd/bucket_cleanup/main.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/cmd/bucket_cleanup/main.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/custom_ca_bundle.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/custom_ca_bundle.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/custom_ca_bundle.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/custom_ca_bundle.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/integration_test.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/integration_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/integration_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/integration_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/s3_crypto.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/s3_crypto.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/s3_crypto.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/s3_crypto.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/stepdef.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/stepdef.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/stepdef.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3crypto/stepdef.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/bucket_region_test.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/bucket_region_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/bucket_region_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/bucket_region_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/integration_test.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/integration_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/integration_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/integration_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/stub.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/stub.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/stub.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/s3manager/stub.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/stub.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/stub.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/stub.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/customizations/s3/stub.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/integration.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/integration.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/integration.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/integration.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/acm.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/acm.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/acm.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/acm.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/acm/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/apigateway.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/apigateway.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/apigateway.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/apigateway.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/apigateway/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/applicationdiscoveryservice.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/applicationdiscoveryservice.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/applicationdiscoveryservice.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/applicationdiscoveryservice.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/applicationdiscoveryservice/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/autoscaling.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/autoscaling.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/autoscaling.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/autoscaling.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/autoscaling/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/cloudformation.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/cloudformation.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/cloudformation.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudformation/cloudformation.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/cloudfront.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/cloudfront.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/cloudfront.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudfront/cloudfront.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/cloudhsm.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/cloudhsm.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/cloudhsm.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudhsm/cloudhsm.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/cloudsearch.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/cloudsearch.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/cloudsearch.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudsearch/cloudsearch.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/cloudtrail.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/cloudtrail.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/cloudtrail.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudtrail/cloudtrail.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/cloudwatch.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/cloudwatch.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/cloudwatch.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatch/cloudwatch.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/cloudwatchlogs.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/cloudwatchlogs.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/cloudwatchlogs.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cloudwatchlogs/cloudwatchlogs.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/codecommit.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/codecommit.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/codecommit.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codecommit/codecommit.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/codedeploy.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/codedeploy.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/codedeploy.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codedeploy/codedeploy.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/codepipeline.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/codepipeline.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/codepipeline.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/codepipeline/codepipeline.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/cognitoidentity.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/cognitoidentity.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/cognitoidentity.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitoidentity/cognitoidentity.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/cognitosync.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/cognitosync.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/cognitosync.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/cognitosync/cognitosync.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/configservice.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/configservice.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/configservice.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/configservice/configservice.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/datapipeline.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/datapipeline.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/datapipeline.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/datapipeline/datapipeline.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/devicefarm.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/devicefarm.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/devicefarm.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/devicefarm/devicefarm.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/directconnect.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/directconnect.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/directconnect.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directconnect/directconnect.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/directoryservice.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/directoryservice.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/directoryservice.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/directoryservice/directoryservice.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/dynamodb.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/dynamodb.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/dynamodb.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodb/dynamodb.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/dynamodbstreams.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/dynamodbstreams.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/dynamodbstreams.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/dynamodbstreams/dynamodbstreams.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/ec2.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/ec2.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/ec2.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ec2/ec2.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/ecs.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/ecs.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/ecs.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ecs/ecs.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/efs.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/efs.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/efs.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/efs/efs.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/elasticache.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/elasticache.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/elasticache.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticache/elasticache.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/elasticbeanstalk.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/elasticbeanstalk.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/elasticbeanstalk.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticbeanstalk/elasticbeanstalk.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/elasticloadbalancing.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/elasticloadbalancing.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/elasticloadbalancing.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elasticloadbalancing/elasticloadbalancing.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/elastictranscoder.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/elastictranscoder.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/elastictranscoder.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/elastictranscoder/elastictranscoder.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/emr.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/emr.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/emr.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/emr/emr.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/es.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/es.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/es.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/es/es.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/glacier.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/glacier.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/glacier.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/glacier/glacier.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/iam.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/iam.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/iam.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iam/iam.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/iotdataplane.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/iotdataplane.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/iotdataplane.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/iotdataplane/iotdataplane.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/kinesis.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/kinesis.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/kinesis.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kinesis/kinesis.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/kms.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/kms.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/kms.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/kms/kms.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/lambda.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/lambda.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/lambda.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/lambda/lambda.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/machinelearning.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/machinelearning.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/machinelearning.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/machinelearning/machinelearning.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/opsworks.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/opsworks.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/opsworks.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/opsworks/opsworks.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/rds.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/rds.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/rds.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/rds/rds.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/redshift.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/redshift.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/redshift.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/redshift/redshift.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/route53.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/route53.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/route53.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53/route53.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/route53domains.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/route53domains.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/route53domains.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/route53domains/route53domains.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/ses.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/ses.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/ses.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ses/ses.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/shared.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/shared.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/shared.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/shared.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/simpledb.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/simpledb.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/simpledb.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/simpledb/simpledb.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/sns.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/sns.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/sns.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sns/sns.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/sqs.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/sqs.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/sqs.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sqs/sqs.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/ssm.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/ssm.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/ssm.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/ssm/ssm.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/storagegateway.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/storagegateway.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/storagegateway.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/storagegateway/storagegateway.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/sts.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/sts.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/sts.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/sts/sts.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/support.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/support.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/support.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/support/support.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/swf.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/swf.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/swf.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/swf/swf.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/waf.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/waf.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/waf.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/waf/waf.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/workspaces.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/workspaces.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/workspaces.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/integration/smoke/workspaces/workspaces.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/mock/mock.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/benchmarks.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/benchmarks.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/benchmarks.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/benchmarks.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/client.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/clients.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/init.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/init.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/init.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/init.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/logging.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/logging.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/logging.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/logging.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/streaming.feature b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/streaming.feature similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/performance/streaming.feature rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/performance/streaming.feature diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.golang-tip b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.golang-tip similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.golang-tip rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.golang-tip diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.4 b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.4 similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.4 rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.4 diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5 b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5 similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5 rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5 diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5-novendorexp b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5-novendorexp similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5-novendorexp rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.5-novendorexp diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.6 b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.6 similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.6 rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.6 diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.7 b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.7 similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.7 rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.7 diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.8 b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.8 similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.8 rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.go1.8 diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.gotip b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.gotip similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.gotip rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/sandbox/Dockerfile.test.gotip diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/unit/unit.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/util.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/util.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/util.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/util.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go b/cli/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/awstesting/util_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/callgraph.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/callgraph.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/callgraph.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/callgraph.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalk.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalk.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalk.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalk.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalkdir.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalkdir.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalkdir.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/codewalkdir.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/dirlist.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/dirlist.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/dirlist.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/dirlist.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/error.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/error.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/error.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/error.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/example.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/example.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/example.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/example.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godoc.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godoc.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godoc.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godoc.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godocs.js b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godocs.js similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godocs.js rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/godocs.js diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/implements.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/implements.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/implements.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/implements.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.js b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.js similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.js rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.js diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.css b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.css similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.css rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.css diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.edit.js b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.edit.js similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.edit.js rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.edit.js diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.js b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.js similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.js rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/jquery.treeview.js diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/methodset.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/methodset.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/methodset.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/methodset.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/opensearch.xml b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/opensearch.xml similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/opensearch.xml rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/opensearch.xml diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package.txt b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package.txt similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package.txt rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package.txt diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_default.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_default.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_default.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_default.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_service.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_service.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_service.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/package_service.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/pkglist.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/pkglist.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/pkglist.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/pkglist.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.txt b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.txt similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.txt rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/search.txt diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchcode.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchcode.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchcode.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchcode.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchdoc.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchdoc.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchdoc.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchdoc.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchtxt.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchtxt.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchtxt.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/searchtxt.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/style.css b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/style.css similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/style.css rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/style.css diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/user_guide_example.html b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/user_guide_example.html similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/user_guide_example.html rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/aws-godoc/templates/user_guide_example.html diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/plugin.rb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/plugin.rb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/plugin.rb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/plugin.rb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/layout/html/footer.erb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/layout/html/footer.erb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/layout/html/footer.erb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/layout/html/footer.erb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/client.erb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/client.erb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/client.erb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/client.erb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/item_summary.erb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/item_summary.erb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/item_summary.erb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/item_summary.erb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/setup.rb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/setup.rb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/setup.rb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/module/html/setup.rb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/package/html/setup.rb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/package/html/setup.rb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/package/html/setup.rb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/package/html/setup.rb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/paginators.erb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/paginators.erb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/paginators.erb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/paginators.erb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/request_methods.erb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/request_methods.erb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/request_methods.erb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/request_methods.erb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/setup.rb b/cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/setup.rb similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/setup.rb rename to cli/vendor/github.com/aws/aws-sdk-go/doc-src/plugin/templates/default/struct/html/setup.rb diff --git a/fn/vendor/github.com/aws/aws-sdk-go/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/main.go b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/main.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/main.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/main.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/plugin/plugin.go b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/plugin/plugin.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/plugin/plugin.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/credentials/plugincreds/plugin/plugin.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/customEndpoint.go b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/customEndpoint.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/customEndpoint.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/customEndpoint/customEndpoint.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/enumEndpoints.go b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/enumEndpoints.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/enumEndpoints.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/endpoints/enumEndpoints/enumEndpoints.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/handleServiceErrorCodes.go b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/handleServiceErrorCodes.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/handleServiceErrorCodes.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/handleServiceErrorCodes/handleServiceErrorCodes.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/withContext.go b/cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/withContext.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/withContext.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/aws/request/withContext/withContext.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/signCookies.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/signCookies.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/signCookies.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/cloudfront/signCookies/signCookies.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/scanItems.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/scanItems.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/scanItems.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/scanItems/scanItems.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest_test.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/dynamodb/unitTest/unitTest_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/filter_ec2_by_tag.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/filter_ec2_by_tag.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/filter_ec2_by_tag.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/ec2/filterInstances/filter_ec2_by_tag.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/iam_authentication.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/iam_authentication.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/iam_authentication.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/rds/rdsutils/authentication/iam_authentication.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/concatObjects.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/concatObjects.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/concatObjects.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/concatObjects/concatObjects.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/listObjects.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/listObjects.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/listObjects.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjects/listObjects.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/listObjectsConcurrently.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/listObjectsConcurrently.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/listObjectsConcurrently.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/listObjectsConcurrently/listObjectsConcurrently.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/client/client.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/client/client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/client/client.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/client/client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/server/server.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/server/server.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/server/server.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/presignURL/server/server.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/putObjectAcl.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/putObjectAcl.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/putObjectAcl.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/s3/putObjectAcl/putObjectAcl.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/README.md b/cli/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample_test.go b/cli/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/example/service/sqs/mockingClientsForTests/ifaceExample_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config.go b/cli/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config.go rename to cli/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_other_test.go b/cli/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_other_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_other_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_other_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_windows_test.go b/cli/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_windows_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_windows_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/internal/shareddefaults/shared_config_windows_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/acm/2015-12-08/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/apigateway/2015-07-09/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/application-autoscaling/2016-02-06/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/appstream/2016-12-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/athena/2017-05-18/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/autoscaling/2011-01-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/batch/2016-08-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/budgets/2016-10-20/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/clouddirectory/2016-05-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudformation/2010-05-15/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-04-17/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-07-27/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2015-09-17/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-13/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-01-28/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-08-20/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-07/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-09-29/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2016-11-25/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudfront/2017-03-25/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudhsm/2014-05-30/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearch/2013-01-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudsearchdomain/2013-01-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cloudtrail/2013-11-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codebuild/2016-10-06/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codecommit/2015-04-13/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codedeploy/2014-10-06/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codepipeline/2015-07-09/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/codestar/2017-04-19/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-identity/2014-06-30/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-idp/2016-04-18/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cognito-sync/2014-06-30/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/config/2014-11-12/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/cur/2017-01-06/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/datapipeline/2012-10-29/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dax/2017-04-19/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/devicefarm/2015-06-23/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/directconnect/2012-10-25/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/discovery/2015-11-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dms/2016-01-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ds/2015-04-16/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2011-12-05/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/dynamodb/2012-08-10/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-04-15/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2015-10-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-04-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-09-15/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ec2/2016-11-15/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecr/2015-09-21/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ecs/2014-11-13/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticache/2015-02-02/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticbeanstalk/2010-12-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticfilesystem/2015-02-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancing/2012-06-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elasticmapreduce/2009-03-31/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/elastictranscoder/2012-09-25/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/email/2010-12-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/entitlement.marketplace/2017-01-11/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/es/2015-01-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2014-02-03/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/events/2015-10-07/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/firehose/2015-08-04/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/gamelift/2015-10-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/glacier/2012-06-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/greengrass/2017-06-07/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/health/2016-08-04/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iam/2010-05-08/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/importexport/2010-06-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2015-08-18/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/inspector/2016-02-16/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot-data/2015-05-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/iot/2015-05-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesis/2013-12-02/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kinesisanalytics/2015-08-14/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/kms/2014-11-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2014-11-11/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lambda/2015-03-31/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lex-models/2017-04-19/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/lightsail/2016-11-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/logs/2014-03-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/machinelearning/2014-12-12/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/meteringmarketplace/2016-01-14/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/mobileanalytics/2014-06-05/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/monitoring/2010-08-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/mturk-requester/2017-01-17/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworks/2013-02-18/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/opsworkscm/2016-11-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/organizations/2016-11-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/pinpoint/2016-12-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/polly/2016-06-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-01-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-02-12/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2013-09-09/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-09-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rds/2014-10-31/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/redshift/2012-12-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/rekognition/2016-06-27/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53/2013-04-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/route53domains/2014-05-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/runtime.lex/2016-11-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/waiters-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/waiters-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/waiters-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/s3/2006-03-01/waiters-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sdb/2009-04-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/servicecatalog/2015-12-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/shield/2016-06-02/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sms/2016-10-24/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/snowball/2016-06-30/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sns/2010-03-31/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sqs/2012-11-05/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/ssm/2014-11-06/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/states/2016-11-23/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/storagegateway/2013-06-30/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/streams.dynamodb/2012-08-10/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/sts/2011-06-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/support/2013-04-15/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/swf/2012-01-25/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf-regional/2016-11-28/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/waf/2015-08-24/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workdocs/2016-05-01/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/workspaces/2015-04-08/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/api-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/api-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/api-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/api-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/docs-2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/docs-2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/docs-2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/docs-2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/examples-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/examples-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/examples-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/examples-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/paginators-1.json b/cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/paginators-1.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/paginators-1.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/apis/xray/2016-04-12/paginators-1.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/customizations/service-aliases.json b/cli/vendor/github.com/aws/aws-sdk-go/models/customizations/service-aliases.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/customizations/service-aliases.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/customizations/service-aliases.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/endpoints/endpoints.json b/cli/vendor/github.com/aws/aws-sdk-go/models/endpoints/endpoints.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/endpoints/endpoints.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/endpoints/endpoints.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/endpoints/generate.go b/cli/vendor/github.com/aws/aws-sdk-go/models/endpoints/generate.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/endpoints/generate.go rename to cli/vendor/github.com/aws/aws-sdk-go/models/endpoints/generate.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/generate.go b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/generate.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/generate.go rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/generate.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/ec2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/ec2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/ec2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/ec2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/json.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/json.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/json.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/json.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/query.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/query.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/query.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/query.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-json.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-json.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-json.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-json.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-xml.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-xml.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-xml.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/input/rest-xml.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/ec2.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/ec2.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/ec2.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/ec2.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/json.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/json.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/json.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/json.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/query.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/query.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/query.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/query.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-json.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-json.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-json.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-json.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-xml.json b/cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-xml.json similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-xml.json rename to cli/vendor/github.com/aws/aws-sdk-go/models/protocol_tests/output/rest-xml.json diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/README.md b/cli/vendor/github.com/aws/aws-sdk-go/private/README.md similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/README.md rename to cli/vendor/github.com/aws/aws-sdk-go/private/README.md diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/api.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/api_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/api_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/api_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/api_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/customization_passes.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/customization_passes.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/customization_passes.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/customization_passes.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/docstring_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/example.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/example.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/example.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/example.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/example_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/example_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/example_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/example_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder_customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder_customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder_customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/examples_builder_customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/exportable_name.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/exportable_name.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/exportable_name.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/exportable_name.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/list_of_shame.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/list_of_shame.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/list_of_shame.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/list_of_shame.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/load.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/load.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/load.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/load.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/load_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/load_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/load_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/load_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/operation.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/operation.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/operation.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/operation.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/pagination.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/pagination.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/pagination.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/pagination.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/param_filler.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/param_filler.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/param_filler.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/param_filler.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/passes.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/passes.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/passes.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/passes.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/passes_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/passes_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/passes_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/passes_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/shape.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/shape.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/shape.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/shape.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/shape_validation.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/shape_validation.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/shape_validation.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/shape_validation.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/shapetag_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/shapetag_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/shapetag_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/shapetag_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/api/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/api/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/api/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/api/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/cli/api-info/api-info.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/cli/api-info/api-info.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/cli/api-info/api-info.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/cli/api-info/api-info.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-api/main.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-api/main.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-api/main.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-api/main.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-endpoints/main.go b/cli/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-endpoints/main.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-endpoints/main.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/model/cli/gen-endpoints/main.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_bench_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/ec2query/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/idempotency_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/json/jsonutil/unmarshal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_bench_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/jsonrpc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/jsonrpc/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/protocol_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/queryutil/queryutil.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/query/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/payload.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/rest_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/rest_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/rest_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/rest_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/rest/unmarshal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_bench_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/restjson.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restjson/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_bench_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/build_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/restxml.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/restxml/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/build.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/unmarshal_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil/xml_to_struct_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2.go b/cli/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2_test.go b/cli/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/signer/v2/v2_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go b/cli/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/util/sort_keys.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/private/util/util.go b/cli/vendor/github.com/aws/aws-sdk-go/private/util/util.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/private/util/util.go rename to cli/vendor/github.com/aws/aws-sdk-go/private/util/util.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/acm/acmiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/acm/acmiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/acm/acmiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/acm/acmiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/acm/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/acm/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/acm/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/acm/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/acm/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/acm/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/acm/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/acm/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/acm/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/acm/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/acm/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/acm/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/acm/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/acm/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/acm/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/acm/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/apigatewayiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/apigatewayiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/apigatewayiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/apigatewayiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/customization.go b/cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/customization.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/customization.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/customization.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/apigateway/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/apigateway/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/applicationautoscalingiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/applicationautoscalingiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/applicationautoscalingiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/applicationautoscalingiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationautoscaling/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/applicationdiscoveryserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/applicationdiscoveryserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/applicationdiscoveryserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/applicationdiscoveryserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/applicationdiscoveryservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/appstream/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/appstream/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/appstream/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/appstream/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/appstream/appstreamiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/appstream/appstreamiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/appstream/appstreamiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/appstream/appstreamiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/appstream/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/appstream/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/appstream/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/appstream/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/appstream/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/appstream/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/appstream/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/appstream/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/appstream/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/appstream/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/appstream/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/appstream/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/appstream/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/appstream/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/appstream/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/appstream/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/athena/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/athena/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/athena/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/athena/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/athena/athenaiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/athena/athenaiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/athena/athenaiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/athena/athenaiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/athena/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/athena/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/athena/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/athena/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/athena/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/athena/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/athena/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/athena/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/athena/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/athena/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/athena/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/athena/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/autoscalingiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/autoscalingiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/autoscalingiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/autoscalingiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/autoscaling/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/autoscaling/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/batch/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/batch/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/batch/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/batch/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/batch/batchiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/batch/batchiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/batch/batchiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/batch/batchiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/batch/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/batch/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/batch/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/batch/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/batch/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/batch/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/batch/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/batch/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/batch/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/batch/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/batch/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/batch/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/batch/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/batch/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/batch/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/batch/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/budgets/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/budgets/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/budgets/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/budgets/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/budgets/budgetsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/budgets/budgetsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/budgets/budgetsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/budgets/budgetsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/budgets/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/budgets/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/budgets/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/budgets/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/budgets/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/budgets/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/budgets/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/budgets/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/budgets/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/budgets/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/budgets/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/budgets/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/clouddirectoryiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/clouddirectoryiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/clouddirectoryiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/clouddirectoryiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/clouddirectory/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudformation/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudformation/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/cloudfrontiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/cloudfrontiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/cloudfrontiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/cloudfrontiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/policy_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/privkey_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/randomreader.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/randomreader.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/randomreader.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/randomreader.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_example_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_example_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_example_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_example_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_cookie_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/sign/sign_url_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudfront/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/cloudhsmiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/cloudhsmiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/cloudhsmiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/cloudhsmiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudhsm/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/cloudsearchiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/cloudsearchiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/cloudsearchiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/cloudsearchiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearch/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/cloudsearchdomainiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/cloudsearchdomainiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/cloudsearchdomainiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/cloudsearchdomainiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudsearchdomain/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/cloudtrailiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/cloudtrailiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/cloudtrailiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/cloudtrailiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudtrail/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/cloudwatchiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatch/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/cloudwatcheventsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/cloudwatcheventsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/cloudwatcheventsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/cloudwatcheventsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchevents/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/cloudwatchlogsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/cloudwatchlogsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/cloudwatchlogsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/cloudwatchlogsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cloudwatchlogs/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/codebuildiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/codebuildiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/codebuildiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/codebuildiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codebuild/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codebuild/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/codecommitiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/codecommitiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/codecommitiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/codecommitiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codecommit/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codecommit/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/codedeployiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/codedeployiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/codedeployiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/codedeployiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codedeploy/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codedeploy/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/codepipelineiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/codepipelineiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/codepipelineiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/codepipelineiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codepipeline/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codepipeline/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codestar/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codestar/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codestar/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codestar/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codestar/codestariface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codestar/codestariface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codestar/codestariface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codestar/codestariface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codestar/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codestar/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codestar/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codestar/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codestar/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codestar/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codestar/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codestar/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/codestar/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/codestar/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/codestar/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/codestar/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/cognitoidentityiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/cognitoidentityiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/cognitoidentityiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/cognitoidentityiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentity/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/cognitoidentityprovideriface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/cognitoidentityprovideriface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/cognitoidentityprovideriface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/cognitoidentityprovideriface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitoidentityprovider/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/cognitosynciface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/cognitosynciface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/cognitosynciface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/cognitosynciface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/cognitosync/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/cognitosync/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/configservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/configservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/configservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/configservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/configservice/configserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/configservice/configserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/configservice/configserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/configservice/configserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/configservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/configservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/configservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/configservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/configservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/configservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/configservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/configservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/configservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/configservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/configservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/configservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/costandusagereportserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/costandusagereportserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/costandusagereportserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/costandusagereportserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/costandusagereportservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/databasemigrationserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/databasemigrationserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/databasemigrationserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/databasemigrationserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/databasemigrationservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/datapipelineiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/datapipelineiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/datapipelineiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/datapipelineiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/datapipeline/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/datapipeline/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dax/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dax/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dax/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dax/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dax/daxiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dax/daxiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dax/daxiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dax/daxiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dax/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dax/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dax/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dax/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dax/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dax/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dax/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dax/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dax/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dax/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dax/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dax/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/devicefarmiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/devicefarmiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/devicefarmiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/devicefarmiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/devicefarm/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/devicefarm/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/directconnectiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/directconnectiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/directconnectiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/directconnectiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directconnect/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directconnect/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/directoryserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/directoryserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/directoryserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/directoryserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/directoryservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/directoryservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc_custom.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc_custom.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc_custom.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/doc_custom.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/converter_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/decode_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/encode_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/field_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/marshaler_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/shared_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbattribute/tag_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/dynamodbiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodb/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/dynamodbstreamsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/dynamodbstreamsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/dynamodbstreamsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/dynamodbstreamsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/dynamodbstreams/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/ec2iface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ec2/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecr/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecr/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecr/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecr/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecr/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecr/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecr/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecr/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecr/ecriface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecr/ecriface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecr/ecriface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecr/ecriface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecr/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecr/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecr/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecr/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecr/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecr/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecr/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecr/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecr/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecr/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecr/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecr/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/ecsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/ecsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/ecsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/ecsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ecs/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ecs/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ecs/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ecs/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/efs/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/efs/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/efs/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/efs/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/efs/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/efs/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/efs/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/efs/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/efs/efsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/efs/efsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/efs/efsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/efs/efsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/efs/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/efs/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/efs/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/efs/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/efs/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/efs/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/efs/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/efs/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/efs/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/efs/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/efs/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/efs/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/elasticacheiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/elasticacheiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/elasticacheiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/elasticacheiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticache/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticache/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/elasticbeanstalkiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/elasticbeanstalkiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/elasticbeanstalkiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/elasticbeanstalkiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticbeanstalk/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/elasticsearchserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/elasticsearchserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/elasticsearchserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/elasticsearchserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elasticsearchservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/elastictranscoderiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/elastictranscoderiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/elastictranscoderiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/elastictranscoderiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elastictranscoder/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/elbiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/elbiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/elbiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/elbiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elb/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elb/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elb/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elb/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/elbv2iface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/elbv2iface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/elbv2iface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/elbv2iface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/elbv2/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/elbv2/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/emr/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/emr/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/emr/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/emr/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/emr/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/emr/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/emr/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/emr/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/emr/emriface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/emr/emriface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/emr/emriface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/emr/emriface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/emr/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/emr/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/emr/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/emr/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/emr/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/emr/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/emr/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/emr/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/emr/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/emr/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/emr/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/emr/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/firehose/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/firehose/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/firehose/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/firehose/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/firehose/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/firehose/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/firehose/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/firehose/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/firehose/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/firehose/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/firehose/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/firehose/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/firehose/firehoseiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/firehose/firehoseiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/firehose/firehoseiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/firehose/firehoseiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/firehose/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/firehose/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/firehose/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/firehose/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/gameliftiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/gameliftiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/gameliftiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/gameliftiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/gamelift/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/gamelift/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/generate.go b/cli/vendor/github.com/aws/aws-sdk-go/service/generate.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/generate.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/generate.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/glacieriface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/glacieriface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/glacieriface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/glacieriface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/treehash_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/glacier/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/glacier/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/glacier/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/glacier/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/greengrassiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/greengrassiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/greengrassiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/greengrassiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/greengrass/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/greengrass/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/health/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/health/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/health/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/health/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/health/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/health/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/health/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/health/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/health/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/health/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/health/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/health/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/health/healthiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/health/healthiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/health/healthiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/health/healthiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/health/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/health/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/health/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/health/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/iamiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/iamiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/iamiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/iamiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iam/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iam/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iam/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iam/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/inspector/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/inspector/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/inspector/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/inspector/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/inspector/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/inspector/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/inspector/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/inspector/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/inspector/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/inspector/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/inspector/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/inspector/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/inspector/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/inspector/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/inspector/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/inspector/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/inspector/inspectoriface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/inspector/inspectoriface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/inspector/inspectoriface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/inspector/inspectoriface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/inspector/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/inspector/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/inspector/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/inspector/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iot/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iot/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iot/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iot/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iot/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iot/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iot/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iot/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iot/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iot/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iot/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iot/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iot/iotiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iot/iotiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iot/iotiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iot/iotiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iot/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iot/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iot/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iot/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/iotdataplaneiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/iotdataplaneiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/iotdataplaneiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/iotdataplaneiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/iotdataplane/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/kinesisiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/kinesisiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/kinesisiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/kinesisiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesis/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/kinesisanalyticsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/kinesisanalyticsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/kinesisanalyticsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/kinesisanalyticsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kinesisanalytics/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kms/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kms/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kms/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kms/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kms/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kms/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kms/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kms/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kms/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kms/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kms/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kms/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kms/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kms/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kms/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kms/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kms/kmsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kms/kmsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kms/kmsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kms/kmsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/kms/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/kms/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/kms/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/kms/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lambda/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lambda/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lambda/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lambda/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lambda/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lambda/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lambda/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lambda/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lambda/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lambda/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lambda/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lambda/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lambda/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lambda/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lambda/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lambda/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lambda/lambdaiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lambda/lambdaiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lambda/lambdaiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lambda/lambdaiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lambda/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lambda/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lambda/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lambda/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/lexmodelbuildingserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/lexmodelbuildingserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/lexmodelbuildingserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/lexmodelbuildingserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexmodelbuildingservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/lexruntimeserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/lexruntimeserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/lexruntimeserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/lexruntimeserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lexruntimeservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/lightsailiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/lightsailiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/lightsailiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/lightsailiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/lightsail/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/lightsail/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/machinelearningiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/machinelearningiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/machinelearningiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/machinelearningiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/machinelearning/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/machinelearning/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/marketplacecommerceanalyticsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/marketplacecommerceanalyticsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/marketplacecommerceanalyticsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/marketplacecommerceanalyticsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacecommerceanalytics/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/marketplaceentitlementserviceiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/marketplaceentitlementserviceiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/marketplaceentitlementserviceiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/marketplaceentitlementserviceiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplaceentitlementservice/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/marketplacemeteringiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/marketplacemeteringiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/marketplacemeteringiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/marketplacemeteringiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/marketplacemetering/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/mobileanalyticsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/mobileanalyticsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/mobileanalyticsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/mobileanalyticsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mobileanalytics/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mturk/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mturk/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mturk/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mturk/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mturk/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mturk/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mturk/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mturk/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mturk/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mturk/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mturk/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mturk/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mturk/mturkiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mturk/mturkiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mturk/mturkiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mturk/mturkiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/mturk/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/mturk/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/mturk/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/mturk/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/opsworksiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/opsworksiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/opsworksiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/opsworksiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworks/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworks/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/opsworkscmiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/opsworkscmiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/opsworkscmiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/opsworkscmiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/opsworkscm/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/organizations/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/organizations/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/organizations/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/organizations/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/organizations/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/organizations/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/organizations/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/organizations/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/organizations/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/organizations/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/organizations/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/organizations/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/organizations/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/organizations/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/organizations/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/organizations/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/organizations/organizationsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/organizations/organizationsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/organizations/organizationsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/organizations/organizationsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/organizations/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/organizations/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/organizations/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/organizations/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/pinpointiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/pinpointiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/pinpointiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/pinpointiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/pinpoint/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/pinpoint/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/pollyiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/pollyiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/pollyiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/pollyiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/polly/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/polly/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/polly/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/polly/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/doc_custom.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/doc_custom.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/doc_custom.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/doc_custom.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/rdsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/rdsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/rdsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/rdsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/rdsutils/connect_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rds/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rds/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rds/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rds/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/redshift/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/redshift/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/redshift/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/redshift/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/redshift/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/redshift/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/redshift/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/redshift/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/redshift/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/redshift/redshiftiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/redshift/redshiftiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/redshift/redshiftiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/redshift/redshiftiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/redshift/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/redshift/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/redshift/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/redshift/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/redshift/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/redshift/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/redshift/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/redshift/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/rekognitioniface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/rekognitioniface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/rekognitioniface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/rekognitioniface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/rekognition/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/rekognition/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/resourcegroupstaggingapiiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/resourcegroupstaggingapiiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/resourcegroupstaggingapiiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/resourcegroupstaggingapiiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/resourcegroupstaggingapi/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/route53iface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/route53iface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/route53iface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/route53iface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_leak_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/unmarshal_error_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/route53domainsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/route53domainsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/route53domainsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/route53domainsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/route53domains/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/route53domains/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/bucket_location_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/content_md5.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/doc_custom.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/host_style_bucket_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/platform_handlers_go1.6_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_content_cipher_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_padder_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_cbc_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_content_cipher_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/aes_gcm_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_builder.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_builder.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_builder.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_builder.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/cipher_util_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/decryption_client_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/encryption_client_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/envelope.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/envelope.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/envelope.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/envelope.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/hash_io_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/helper_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/key_handler_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/kms_key_handler_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mat_desc_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mock_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mock_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mock_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/mock_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/padder.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/padder.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/padder.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/padder.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/pkcs7_padder_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3crypto/strategy_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3iface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3iface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3iface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3iface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/batch_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/bucket_region_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/download_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/s3manageriface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/s3manageriface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/s3manageriface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/s3manageriface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/shared_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/shared_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/shared_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/shared_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/s3manager/upload_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/sse.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/sse_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/statusok_error_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_leak_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/unmarshal_error_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/s3/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/servicecatalogiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/servicecatalogiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/servicecatalogiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/servicecatalog/servicecatalogiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/sesiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/sesiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/sesiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/sesiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ses/waiters.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ses/waiters.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ses/waiters.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ses/waiters.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sfn/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sfn/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sfn/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sfn/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sfn/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sfn/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sfn/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sfn/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sfn/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sfn/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sfn/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sfn/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sfn/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sfn/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sfn/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sfn/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sfn/sfniface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sfn/sfniface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sfn/sfniface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sfn/sfniface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/shield/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/shield/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/shield/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/shield/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/shield/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/shield/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/shield/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/shield/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/shield/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/shield/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/shield/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/shield/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/shield/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/shield/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/shield/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/shield/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/shield/shieldiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/shield/shieldiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/shield/shieldiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/shield/shieldiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/simpledbiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/simpledbiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/simpledbiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/simpledbiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshal_error_leak_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshal_error_leak_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshal_error_leak_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshal_error_leak_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/simpledb/unmarshall_error_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sms/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sms/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sms/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sms/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sms/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sms/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sms/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sms/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sms/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sms/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sms/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sms/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sms/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sms/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sms/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sms/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sms/smsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sms/smsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sms/smsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sms/smsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/snowball/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/snowball/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/snowball/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/snowball/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/snowball/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/snowball/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/snowball/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/snowball/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/snowball/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/snowball/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/snowball/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/snowball/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/snowball/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/snowball/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/snowball/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/snowball/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/snowball/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/snowball/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/snowball/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/snowball/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/snowball/snowballiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/snowball/snowballiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/snowball/snowballiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/snowball/snowballiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sns/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sns/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sns/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sns/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sns/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sns/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sns/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sns/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sns/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sns/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sns/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sns/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sns/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sns/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sns/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sns/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sns/snsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sns/snsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sns/snsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sns/snsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/api_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/api_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/api_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/api_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/checksums_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sqs/sqsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sqs/sqsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sqs/sqsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sqs/sqsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ssm/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ssm/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ssm/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ssm/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ssm/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ssm/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ssm/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ssm/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ssm/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ssm/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/ssm/ssmiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/ssm/ssmiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/ssm/ssmiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/ssm/ssmiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/storagegatewayiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/storagegatewayiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/storagegateway/storagegatewayiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/storagegateway/storagegatewayiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/customizations.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/customizations_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/sts/stsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/sts/stsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/sts/stsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/sts/stsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/support/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/support/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/support/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/support/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/support/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/support/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/support/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/support/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/support/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/support/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/support/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/support/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/support/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/support/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/support/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/support/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/support/supportiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/support/supportiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/support/supportiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/support/supportiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/swf/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/swf/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/swf/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/swf/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/swf/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/swf/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/swf/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/swf/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/swf/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/swf/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/swf/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/swf/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/swf/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/swf/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/swf/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/swf/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/swf/swfiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/swf/swfiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/swf/swfiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/swf/swfiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/waf/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/waf/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/waf/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/waf/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/waf/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/waf/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/waf/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/waf/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/waf/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/waf/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/waf/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/waf/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/waf/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/waf/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/waf/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/waf/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/waf/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/waf/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/waf/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/waf/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/waf/wafiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/waf/wafiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/waf/wafiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/waf/wafiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/examples_test.go b/cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/examples_test.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/examples_test.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/examples_test.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/wafregionaliface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/wafregionaliface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/wafregional/wafregionaliface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/wafregional/wafregionaliface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/workdocsiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/workdocsiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workdocs/workdocsiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workdocs/workdocsiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/workspacesiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/workspacesiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/workspaces/workspacesiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/workspaces/workspacesiface/interface.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/xray/api.go b/cli/vendor/github.com/aws/aws-sdk-go/service/xray/api.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/xray/api.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/xray/api.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/xray/doc.go b/cli/vendor/github.com/aws/aws-sdk-go/service/xray/doc.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/xray/doc.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/xray/doc.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/xray/errors.go b/cli/vendor/github.com/aws/aws-sdk-go/service/xray/errors.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/xray/errors.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/xray/errors.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/xray/service.go b/cli/vendor/github.com/aws/aws-sdk-go/service/xray/service.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/xray/service.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/xray/service.go diff --git a/fn/vendor/github.com/aws/aws-sdk-go/service/xray/xrayiface/interface.go b/cli/vendor/github.com/aws/aws-sdk-go/service/xray/xrayiface/interface.go similarity index 100% rename from fn/vendor/github.com/aws/aws-sdk-go/service/xray/xrayiface/interface.go rename to cli/vendor/github.com/aws/aws-sdk-go/service/xray/xrayiface/interface.go diff --git a/fn/vendor/github.com/coreos/go-semver/.travis.yml b/cli/vendor/github.com/coreos/go-semver/.travis.yml similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/.travis.yml rename to cli/vendor/github.com/coreos/go-semver/.travis.yml diff --git a/fn/vendor/github.com/coreos/go-semver/LICENSE b/cli/vendor/github.com/coreos/go-semver/LICENSE similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/LICENSE rename to cli/vendor/github.com/coreos/go-semver/LICENSE diff --git a/fn/vendor/github.com/coreos/go-semver/README.md b/cli/vendor/github.com/coreos/go-semver/README.md similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/README.md rename to cli/vendor/github.com/coreos/go-semver/README.md diff --git a/fn/vendor/github.com/coreos/go-semver/example.go b/cli/vendor/github.com/coreos/go-semver/example.go similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/example.go rename to cli/vendor/github.com/coreos/go-semver/example.go diff --git a/fn/vendor/github.com/coreos/go-semver/semver/semver.go b/cli/vendor/github.com/coreos/go-semver/semver/semver.go similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/semver/semver.go rename to cli/vendor/github.com/coreos/go-semver/semver/semver.go diff --git a/fn/vendor/github.com/coreos/go-semver/semver/semver_test.go b/cli/vendor/github.com/coreos/go-semver/semver/semver_test.go similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/semver/semver_test.go rename to cli/vendor/github.com/coreos/go-semver/semver/semver_test.go diff --git a/fn/vendor/github.com/coreos/go-semver/semver/sort.go b/cli/vendor/github.com/coreos/go-semver/semver/sort.go similarity index 100% rename from fn/vendor/github.com/coreos/go-semver/semver/sort.go rename to cli/vendor/github.com/coreos/go-semver/semver/sort.go diff --git a/fn/vendor/github.com/docker/docker/.dockerignore b/cli/vendor/github.com/docker/docker/.dockerignore similarity index 100% rename from fn/vendor/github.com/docker/docker/.dockerignore rename to cli/vendor/github.com/docker/docker/.dockerignore diff --git a/fn/vendor/github.com/docker/docker/.github/ISSUE_TEMPLATE.md b/cli/vendor/github.com/docker/docker/.github/ISSUE_TEMPLATE.md similarity index 100% rename from fn/vendor/github.com/docker/docker/.github/ISSUE_TEMPLATE.md rename to cli/vendor/github.com/docker/docker/.github/ISSUE_TEMPLATE.md diff --git a/fn/vendor/github.com/docker/docker/.github/PULL_REQUEST_TEMPLATE.md b/cli/vendor/github.com/docker/docker/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from fn/vendor/github.com/docker/docker/.github/PULL_REQUEST_TEMPLATE.md rename to cli/vendor/github.com/docker/docker/.github/PULL_REQUEST_TEMPLATE.md diff --git a/fn/vendor/github.com/docker/docker/.gitignore b/cli/vendor/github.com/docker/docker/.gitignore similarity index 100% rename from fn/vendor/github.com/docker/docker/.gitignore rename to cli/vendor/github.com/docker/docker/.gitignore diff --git a/fn/vendor/github.com/docker/docker/.mailmap b/cli/vendor/github.com/docker/docker/.mailmap similarity index 100% rename from fn/vendor/github.com/docker/docker/.mailmap rename to cli/vendor/github.com/docker/docker/.mailmap diff --git a/fn/vendor/github.com/docker/docker/AUTHORS b/cli/vendor/github.com/docker/docker/AUTHORS similarity index 100% rename from fn/vendor/github.com/docker/docker/AUTHORS rename to cli/vendor/github.com/docker/docker/AUTHORS diff --git a/fn/vendor/github.com/docker/docker/CHANGELOG.md b/cli/vendor/github.com/docker/docker/CHANGELOG.md similarity index 100% rename from fn/vendor/github.com/docker/docker/CHANGELOG.md rename to cli/vendor/github.com/docker/docker/CHANGELOG.md diff --git a/fn/vendor/github.com/docker/docker/CONTRIBUTING.md b/cli/vendor/github.com/docker/docker/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/docker/docker/CONTRIBUTING.md rename to cli/vendor/github.com/docker/docker/CONTRIBUTING.md diff --git a/fn/vendor/github.com/docker/docker/Dockerfile b/cli/vendor/github.com/docker/docker/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile rename to cli/vendor/github.com/docker/docker/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.aarch64 b/cli/vendor/github.com/docker/docker/Dockerfile.aarch64 similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.aarch64 rename to cli/vendor/github.com/docker/docker/Dockerfile.aarch64 diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.armhf b/cli/vendor/github.com/docker/docker/Dockerfile.armhf similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.armhf rename to cli/vendor/github.com/docker/docker/Dockerfile.armhf diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.ppc64le b/cli/vendor/github.com/docker/docker/Dockerfile.ppc64le similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.ppc64le rename to cli/vendor/github.com/docker/docker/Dockerfile.ppc64le diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.s390x b/cli/vendor/github.com/docker/docker/Dockerfile.s390x similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.s390x rename to cli/vendor/github.com/docker/docker/Dockerfile.s390x diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.simple b/cli/vendor/github.com/docker/docker/Dockerfile.simple similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.simple rename to cli/vendor/github.com/docker/docker/Dockerfile.simple diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.solaris b/cli/vendor/github.com/docker/docker/Dockerfile.solaris similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.solaris rename to cli/vendor/github.com/docker/docker/Dockerfile.solaris diff --git a/fn/vendor/github.com/docker/docker/Dockerfile.windows b/cli/vendor/github.com/docker/docker/Dockerfile.windows similarity index 100% rename from fn/vendor/github.com/docker/docker/Dockerfile.windows rename to cli/vendor/github.com/docker/docker/Dockerfile.windows diff --git a/fn/vendor/github.com/docker/docker/LICENSE b/cli/vendor/github.com/docker/docker/LICENSE similarity index 100% rename from fn/vendor/github.com/docker/docker/LICENSE rename to cli/vendor/github.com/docker/docker/LICENSE diff --git a/fn/vendor/github.com/docker/docker/MAINTAINERS b/cli/vendor/github.com/docker/docker/MAINTAINERS similarity index 100% rename from fn/vendor/github.com/docker/docker/MAINTAINERS rename to cli/vendor/github.com/docker/docker/MAINTAINERS diff --git a/fn/vendor/github.com/docker/docker/Makefile b/cli/vendor/github.com/docker/docker/Makefile similarity index 100% rename from fn/vendor/github.com/docker/docker/Makefile rename to cli/vendor/github.com/docker/docker/Makefile diff --git a/fn/vendor/github.com/docker/docker/NOTICE b/cli/vendor/github.com/docker/docker/NOTICE similarity index 100% rename from fn/vendor/github.com/docker/docker/NOTICE rename to cli/vendor/github.com/docker/docker/NOTICE diff --git a/fn/vendor/github.com/docker/docker/README.md b/cli/vendor/github.com/docker/docker/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/README.md rename to cli/vendor/github.com/docker/docker/README.md diff --git a/fn/vendor/github.com/docker/docker/ROADMAP.md b/cli/vendor/github.com/docker/docker/ROADMAP.md similarity index 100% rename from fn/vendor/github.com/docker/docker/ROADMAP.md rename to cli/vendor/github.com/docker/docker/ROADMAP.md diff --git a/fn/vendor/github.com/docker/docker/VENDORING.md b/cli/vendor/github.com/docker/docker/VENDORING.md similarity index 100% rename from fn/vendor/github.com/docker/docker/VENDORING.md rename to cli/vendor/github.com/docker/docker/VENDORING.md diff --git a/fn/vendor/github.com/docker/docker/VERSION b/cli/vendor/github.com/docker/docker/VERSION similarity index 100% rename from fn/vendor/github.com/docker/docker/VERSION rename to cli/vendor/github.com/docker/docker/VERSION diff --git a/fn/vendor/github.com/docker/docker/api/README.md b/cli/vendor/github.com/docker/docker/api/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/api/README.md rename to cli/vendor/github.com/docker/docker/api/README.md diff --git a/fn/vendor/github.com/docker/docker/api/common.go b/cli/vendor/github.com/docker/docker/api/common.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/common.go rename to cli/vendor/github.com/docker/docker/api/common.go diff --git a/fn/vendor/github.com/docker/docker/api/common_test.go b/cli/vendor/github.com/docker/docker/api/common_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/common_test.go rename to cli/vendor/github.com/docker/docker/api/common_test.go diff --git a/fn/vendor/github.com/docker/docker/api/common_unix.go b/cli/vendor/github.com/docker/docker/api/common_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/common_unix.go rename to cli/vendor/github.com/docker/docker/api/common_unix.go diff --git a/fn/vendor/github.com/docker/docker/api/common_windows.go b/cli/vendor/github.com/docker/docker/api/common_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/common_windows.go rename to cli/vendor/github.com/docker/docker/api/common_windows.go diff --git a/fn/vendor/github.com/docker/docker/api/errors/errors.go b/cli/vendor/github.com/docker/docker/api/errors/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/errors/errors.go rename to cli/vendor/github.com/docker/docker/api/errors/errors.go diff --git a/fn/vendor/github.com/docker/docker/api/fixtures/keyfile b/cli/vendor/github.com/docker/docker/api/fixtures/keyfile similarity index 100% rename from fn/vendor/github.com/docker/docker/api/fixtures/keyfile rename to cli/vendor/github.com/docker/docker/api/fixtures/keyfile diff --git a/fn/vendor/github.com/docker/docker/api/names.go b/cli/vendor/github.com/docker/docker/api/names.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/names.go rename to cli/vendor/github.com/docker/docker/api/names.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/decoder.go b/cli/vendor/github.com/docker/docker/api/server/httputils/decoder.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/decoder.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/decoder.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/errors.go b/cli/vendor/github.com/docker/docker/api/server/httputils/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/errors.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/errors.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/form.go b/cli/vendor/github.com/docker/docker/api/server/httputils/form.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/form.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/form.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/form_test.go b/cli/vendor/github.com/docker/docker/api/server/httputils/form_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/form_test.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/form_test.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/httputils.go b/cli/vendor/github.com/docker/docker/api/server/httputils/httputils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/httputils.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/httputils.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json.go b/cli/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json_go16.go b/cli/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json_go16.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json_go16.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/httputils_write_json_go16.go diff --git a/fn/vendor/github.com/docker/docker/api/server/httputils/write_log_stream.go b/cli/vendor/github.com/docker/docker/api/server/httputils/write_log_stream.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/httputils/write_log_stream.go rename to cli/vendor/github.com/docker/docker/api/server/httputils/write_log_stream.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware.go b/cli/vendor/github.com/docker/docker/api/server/middleware.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware.go rename to cli/vendor/github.com/docker/docker/api/server/middleware.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware/cors.go b/cli/vendor/github.com/docker/docker/api/server/middleware/cors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware/cors.go rename to cli/vendor/github.com/docker/docker/api/server/middleware/cors.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware/debug.go b/cli/vendor/github.com/docker/docker/api/server/middleware/debug.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware/debug.go rename to cli/vendor/github.com/docker/docker/api/server/middleware/debug.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware/experimental.go b/cli/vendor/github.com/docker/docker/api/server/middleware/experimental.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware/experimental.go rename to cli/vendor/github.com/docker/docker/api/server/middleware/experimental.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware/middleware.go b/cli/vendor/github.com/docker/docker/api/server/middleware/middleware.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware/middleware.go rename to cli/vendor/github.com/docker/docker/api/server/middleware/middleware.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware/version.go b/cli/vendor/github.com/docker/docker/api/server/middleware/version.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware/version.go rename to cli/vendor/github.com/docker/docker/api/server/middleware/version.go diff --git a/fn/vendor/github.com/docker/docker/api/server/middleware/version_test.go b/cli/vendor/github.com/docker/docker/api/server/middleware/version_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/middleware/version_test.go rename to cli/vendor/github.com/docker/docker/api/server/middleware/version_test.go diff --git a/fn/vendor/github.com/docker/docker/api/server/profiler.go b/cli/vendor/github.com/docker/docker/api/server/profiler.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/profiler.go rename to cli/vendor/github.com/docker/docker/api/server/profiler.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/build/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/build/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/build/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/build/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/build/build.go b/cli/vendor/github.com/docker/docker/api/server/router/build/build.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/build/build.go rename to cli/vendor/github.com/docker/docker/api/server/router/build/build.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/build/build_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/build/build_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/build/build_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/build/build_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/checkpoint/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/checkpoint/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/checkpoint/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/checkpoint/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint.go b/cli/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint.go rename to cli/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/checkpoint/checkpoint_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/container/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/container/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/container/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/container/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/container/container.go b/cli/vendor/github.com/docker/docker/api/server/router/container/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/container/container.go rename to cli/vendor/github.com/docker/docker/api/server/router/container/container.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/container/container_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/container/container_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/container/container_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/container/container_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/container/copy.go b/cli/vendor/github.com/docker/docker/api/server/router/container/copy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/container/copy.go rename to cli/vendor/github.com/docker/docker/api/server/router/container/copy.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/container/exec.go b/cli/vendor/github.com/docker/docker/api/server/router/container/exec.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/container/exec.go rename to cli/vendor/github.com/docker/docker/api/server/router/container/exec.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/container/inspect.go b/cli/vendor/github.com/docker/docker/api/server/router/container/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/container/inspect.go rename to cli/vendor/github.com/docker/docker/api/server/router/container/inspect.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/experimental.go b/cli/vendor/github.com/docker/docker/api/server/router/experimental.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/experimental.go rename to cli/vendor/github.com/docker/docker/api/server/router/experimental.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/image/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/image/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/image/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/image/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/image/image.go b/cli/vendor/github.com/docker/docker/api/server/router/image/image.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/image/image.go rename to cli/vendor/github.com/docker/docker/api/server/router/image/image.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/image/image_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/image/image_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/image/image_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/image/image_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/local.go b/cli/vendor/github.com/docker/docker/api/server/router/local.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/local.go rename to cli/vendor/github.com/docker/docker/api/server/router/local.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/network/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/network/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/network/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/network/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/network/filter.go b/cli/vendor/github.com/docker/docker/api/server/router/network/filter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/network/filter.go rename to cli/vendor/github.com/docker/docker/api/server/router/network/filter.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/network/filter_test.go b/cli/vendor/github.com/docker/docker/api/server/router/network/filter_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/network/filter_test.go rename to cli/vendor/github.com/docker/docker/api/server/router/network/filter_test.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/network/network.go b/cli/vendor/github.com/docker/docker/api/server/router/network/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/network/network.go rename to cli/vendor/github.com/docker/docker/api/server/router/network/network.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/network/network_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/network/network_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/network/network_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/network/network_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/plugin/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/plugin/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/plugin/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/plugin/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/plugin/plugin.go b/cli/vendor/github.com/docker/docker/api/server/router/plugin/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/plugin/plugin.go rename to cli/vendor/github.com/docker/docker/api/server/router/plugin/plugin.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/plugin/plugin_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/plugin/plugin_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/plugin/plugin_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/plugin/plugin_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/router.go b/cli/vendor/github.com/docker/docker/api/server/router/router.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/router.go rename to cli/vendor/github.com/docker/docker/api/server/router/router.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/swarm/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/swarm/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/swarm/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/swarm/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/swarm/cluster.go b/cli/vendor/github.com/docker/docker/api/server/router/swarm/cluster.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/swarm/cluster.go rename to cli/vendor/github.com/docker/docker/api/server/router/swarm/cluster.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/swarm/cluster_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/swarm/cluster_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/swarm/cluster_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/swarm/cluster_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/swarm/helpers.go b/cli/vendor/github.com/docker/docker/api/server/router/swarm/helpers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/swarm/helpers.go rename to cli/vendor/github.com/docker/docker/api/server/router/swarm/helpers.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/system/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/system/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/system/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/system/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/system/system.go b/cli/vendor/github.com/docker/docker/api/server/router/system/system.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/system/system.go rename to cli/vendor/github.com/docker/docker/api/server/router/system/system.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/system/system_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/system/system_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/system/system_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/system/system_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/volume/backend.go b/cli/vendor/github.com/docker/docker/api/server/router/volume/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/volume/backend.go rename to cli/vendor/github.com/docker/docker/api/server/router/volume/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/volume/volume.go b/cli/vendor/github.com/docker/docker/api/server/router/volume/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/volume/volume.go rename to cli/vendor/github.com/docker/docker/api/server/router/volume/volume.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router/volume/volume_routes.go b/cli/vendor/github.com/docker/docker/api/server/router/volume/volume_routes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router/volume/volume_routes.go rename to cli/vendor/github.com/docker/docker/api/server/router/volume/volume_routes.go diff --git a/fn/vendor/github.com/docker/docker/api/server/router_swapper.go b/cli/vendor/github.com/docker/docker/api/server/router_swapper.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/router_swapper.go rename to cli/vendor/github.com/docker/docker/api/server/router_swapper.go diff --git a/fn/vendor/github.com/docker/docker/api/server/server.go b/cli/vendor/github.com/docker/docker/api/server/server.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/server.go rename to cli/vendor/github.com/docker/docker/api/server/server.go diff --git a/fn/vendor/github.com/docker/docker/api/server/server_test.go b/cli/vendor/github.com/docker/docker/api/server/server_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/server/server_test.go rename to cli/vendor/github.com/docker/docker/api/server/server_test.go diff --git a/fn/vendor/github.com/docker/docker/api/swagger-gen.yaml b/cli/vendor/github.com/docker/docker/api/swagger-gen.yaml similarity index 100% rename from fn/vendor/github.com/docker/docker/api/swagger-gen.yaml rename to cli/vendor/github.com/docker/docker/api/swagger-gen.yaml diff --git a/fn/vendor/github.com/docker/docker/api/swagger.yaml b/cli/vendor/github.com/docker/docker/api/swagger.yaml similarity index 100% rename from fn/vendor/github.com/docker/docker/api/swagger.yaml rename to cli/vendor/github.com/docker/docker/api/swagger.yaml diff --git a/fn/vendor/github.com/docker/docker/api/templates/server/operation.gotmpl b/cli/vendor/github.com/docker/docker/api/templates/server/operation.gotmpl similarity index 100% rename from fn/vendor/github.com/docker/docker/api/templates/server/operation.gotmpl rename to cli/vendor/github.com/docker/docker/api/templates/server/operation.gotmpl diff --git a/fn/vendor/github.com/docker/docker/api/types/auth.go b/cli/vendor/github.com/docker/docker/api/types/auth.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/auth.go rename to cli/vendor/github.com/docker/docker/api/types/auth.go diff --git a/fn/vendor/github.com/docker/docker/api/types/backend/backend.go b/cli/vendor/github.com/docker/docker/api/types/backend/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/backend/backend.go rename to cli/vendor/github.com/docker/docker/api/types/backend/backend.go diff --git a/fn/vendor/github.com/docker/docker/api/types/blkiodev/blkio.go b/cli/vendor/github.com/docker/docker/api/types/blkiodev/blkio.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/blkiodev/blkio.go rename to cli/vendor/github.com/docker/docker/api/types/blkiodev/blkio.go diff --git a/fn/vendor/github.com/docker/docker/api/types/client.go b/cli/vendor/github.com/docker/docker/api/types/client.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/client.go rename to cli/vendor/github.com/docker/docker/api/types/client.go diff --git a/fn/vendor/github.com/docker/docker/api/types/configs.go b/cli/vendor/github.com/docker/docker/api/types/configs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/configs.go rename to cli/vendor/github.com/docker/docker/api/types/configs.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/config.go b/cli/vendor/github.com/docker/docker/api/types/container/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/config.go rename to cli/vendor/github.com/docker/docker/api/types/container/config.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/container_changes.go b/cli/vendor/github.com/docker/docker/api/types/container/container_changes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/container_changes.go rename to cli/vendor/github.com/docker/docker/api/types/container/container_changes.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/container_create.go b/cli/vendor/github.com/docker/docker/api/types/container/container_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/container_create.go rename to cli/vendor/github.com/docker/docker/api/types/container/container_create.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/container_top.go b/cli/vendor/github.com/docker/docker/api/types/container/container_top.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/container_top.go rename to cli/vendor/github.com/docker/docker/api/types/container/container_top.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/container_update.go b/cli/vendor/github.com/docker/docker/api/types/container/container_update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/container_update.go rename to cli/vendor/github.com/docker/docker/api/types/container/container_update.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/container_wait.go b/cli/vendor/github.com/docker/docker/api/types/container/container_wait.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/container_wait.go rename to cli/vendor/github.com/docker/docker/api/types/container/container_wait.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/host_config.go b/cli/vendor/github.com/docker/docker/api/types/container/host_config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/host_config.go rename to cli/vendor/github.com/docker/docker/api/types/container/host_config.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/hostconfig_unix.go b/cli/vendor/github.com/docker/docker/api/types/container/hostconfig_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/hostconfig_unix.go rename to cli/vendor/github.com/docker/docker/api/types/container/hostconfig_unix.go diff --git a/fn/vendor/github.com/docker/docker/api/types/container/hostconfig_windows.go b/cli/vendor/github.com/docker/docker/api/types/container/hostconfig_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/container/hostconfig_windows.go rename to cli/vendor/github.com/docker/docker/api/types/container/hostconfig_windows.go diff --git a/fn/vendor/github.com/docker/docker/api/types/error_response.go b/cli/vendor/github.com/docker/docker/api/types/error_response.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/error_response.go rename to cli/vendor/github.com/docker/docker/api/types/error_response.go diff --git a/fn/vendor/github.com/docker/docker/api/types/events/events.go b/cli/vendor/github.com/docker/docker/api/types/events/events.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/events/events.go rename to cli/vendor/github.com/docker/docker/api/types/events/events.go diff --git a/fn/vendor/github.com/docker/docker/api/types/filters/parse.go b/cli/vendor/github.com/docker/docker/api/types/filters/parse.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/filters/parse.go rename to cli/vendor/github.com/docker/docker/api/types/filters/parse.go diff --git a/fn/vendor/github.com/docker/docker/api/types/filters/parse_test.go b/cli/vendor/github.com/docker/docker/api/types/filters/parse_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/filters/parse_test.go rename to cli/vendor/github.com/docker/docker/api/types/filters/parse_test.go diff --git a/fn/vendor/github.com/docker/docker/api/types/graph_driver_data.go b/cli/vendor/github.com/docker/docker/api/types/graph_driver_data.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/graph_driver_data.go rename to cli/vendor/github.com/docker/docker/api/types/graph_driver_data.go diff --git a/fn/vendor/github.com/docker/docker/api/types/id_response.go b/cli/vendor/github.com/docker/docker/api/types/id_response.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/id_response.go rename to cli/vendor/github.com/docker/docker/api/types/id_response.go diff --git a/fn/vendor/github.com/docker/docker/api/types/image/image_history.go b/cli/vendor/github.com/docker/docker/api/types/image/image_history.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/image/image_history.go rename to cli/vendor/github.com/docker/docker/api/types/image/image_history.go diff --git a/fn/vendor/github.com/docker/docker/api/types/image_delete_response_item.go b/cli/vendor/github.com/docker/docker/api/types/image_delete_response_item.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/image_delete_response_item.go rename to cli/vendor/github.com/docker/docker/api/types/image_delete_response_item.go diff --git a/fn/vendor/github.com/docker/docker/api/types/image_summary.go b/cli/vendor/github.com/docker/docker/api/types/image_summary.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/image_summary.go rename to cli/vendor/github.com/docker/docker/api/types/image_summary.go diff --git a/fn/vendor/github.com/docker/docker/api/types/mount/mount.go b/cli/vendor/github.com/docker/docker/api/types/mount/mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/mount/mount.go rename to cli/vendor/github.com/docker/docker/api/types/mount/mount.go diff --git a/fn/vendor/github.com/docker/docker/api/types/network/network.go b/cli/vendor/github.com/docker/docker/api/types/network/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/network/network.go rename to cli/vendor/github.com/docker/docker/api/types/network/network.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugin.go b/cli/vendor/github.com/docker/docker/api/types/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugin.go rename to cli/vendor/github.com/docker/docker/api/types/plugin.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugin_device.go b/cli/vendor/github.com/docker/docker/api/types/plugin_device.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugin_device.go rename to cli/vendor/github.com/docker/docker/api/types/plugin_device.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugin_env.go b/cli/vendor/github.com/docker/docker/api/types/plugin_env.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugin_env.go rename to cli/vendor/github.com/docker/docker/api/types/plugin_env.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugin_interface_type.go b/cli/vendor/github.com/docker/docker/api/types/plugin_interface_type.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugin_interface_type.go rename to cli/vendor/github.com/docker/docker/api/types/plugin_interface_type.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugin_mount.go b/cli/vendor/github.com/docker/docker/api/types/plugin_mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugin_mount.go rename to cli/vendor/github.com/docker/docker/api/types/plugin_mount.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugin_responses.go b/cli/vendor/github.com/docker/docker/api/types/plugin_responses.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugin_responses.go rename to cli/vendor/github.com/docker/docker/api/types/plugin_responses.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.pb.go b/cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.pb.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.pb.go rename to cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.pb.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.proto b/cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.proto similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.proto rename to cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/entry.proto diff --git a/fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/gen.go b/cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/gen.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/gen.go rename to cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/gen.go diff --git a/fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/io.go b/cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/io.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/plugins/logdriver/io.go rename to cli/vendor/github.com/docker/docker/api/types/plugins/logdriver/io.go diff --git a/fn/vendor/github.com/docker/docker/api/types/port.go b/cli/vendor/github.com/docker/docker/api/types/port.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/port.go rename to cli/vendor/github.com/docker/docker/api/types/port.go diff --git a/fn/vendor/github.com/docker/docker/api/types/registry/authenticate.go b/cli/vendor/github.com/docker/docker/api/types/registry/authenticate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/registry/authenticate.go rename to cli/vendor/github.com/docker/docker/api/types/registry/authenticate.go diff --git a/fn/vendor/github.com/docker/docker/api/types/registry/registry.go b/cli/vendor/github.com/docker/docker/api/types/registry/registry.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/registry/registry.go rename to cli/vendor/github.com/docker/docker/api/types/registry/registry.go diff --git a/fn/vendor/github.com/docker/docker/api/types/seccomp.go b/cli/vendor/github.com/docker/docker/api/types/seccomp.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/seccomp.go rename to cli/vendor/github.com/docker/docker/api/types/seccomp.go diff --git a/fn/vendor/github.com/docker/docker/api/types/service_update_response.go b/cli/vendor/github.com/docker/docker/api/types/service_update_response.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/service_update_response.go rename to cli/vendor/github.com/docker/docker/api/types/service_update_response.go diff --git a/fn/vendor/github.com/docker/docker/api/types/stats.go b/cli/vendor/github.com/docker/docker/api/types/stats.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/stats.go rename to cli/vendor/github.com/docker/docker/api/types/stats.go diff --git a/fn/vendor/github.com/docker/docker/api/types/strslice/strslice.go b/cli/vendor/github.com/docker/docker/api/types/strslice/strslice.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/strslice/strslice.go rename to cli/vendor/github.com/docker/docker/api/types/strslice/strslice.go diff --git a/fn/vendor/github.com/docker/docker/api/types/strslice/strslice_test.go b/cli/vendor/github.com/docker/docker/api/types/strslice/strslice_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/strslice/strslice_test.go rename to cli/vendor/github.com/docker/docker/api/types/strslice/strslice_test.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/common.go b/cli/vendor/github.com/docker/docker/api/types/swarm/common.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/common.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/common.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/container.go b/cli/vendor/github.com/docker/docker/api/types/swarm/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/container.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/container.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/network.go b/cli/vendor/github.com/docker/docker/api/types/swarm/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/network.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/network.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/node.go b/cli/vendor/github.com/docker/docker/api/types/swarm/node.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/node.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/node.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/secret.go b/cli/vendor/github.com/docker/docker/api/types/swarm/secret.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/secret.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/secret.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/service.go b/cli/vendor/github.com/docker/docker/api/types/swarm/service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/service.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/service.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/swarm.go b/cli/vendor/github.com/docker/docker/api/types/swarm/swarm.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/swarm.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/swarm.go diff --git a/fn/vendor/github.com/docker/docker/api/types/swarm/task.go b/cli/vendor/github.com/docker/docker/api/types/swarm/task.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/swarm/task.go rename to cli/vendor/github.com/docker/docker/api/types/swarm/task.go diff --git a/fn/vendor/github.com/docker/docker/api/types/time/duration_convert.go b/cli/vendor/github.com/docker/docker/api/types/time/duration_convert.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/time/duration_convert.go rename to cli/vendor/github.com/docker/docker/api/types/time/duration_convert.go diff --git a/fn/vendor/github.com/docker/docker/api/types/time/duration_convert_test.go b/cli/vendor/github.com/docker/docker/api/types/time/duration_convert_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/time/duration_convert_test.go rename to cli/vendor/github.com/docker/docker/api/types/time/duration_convert_test.go diff --git a/fn/vendor/github.com/docker/docker/api/types/time/timestamp.go b/cli/vendor/github.com/docker/docker/api/types/time/timestamp.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/time/timestamp.go rename to cli/vendor/github.com/docker/docker/api/types/time/timestamp.go diff --git a/fn/vendor/github.com/docker/docker/api/types/time/timestamp_test.go b/cli/vendor/github.com/docker/docker/api/types/time/timestamp_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/time/timestamp_test.go rename to cli/vendor/github.com/docker/docker/api/types/time/timestamp_test.go diff --git a/fn/vendor/github.com/docker/docker/api/types/types.go b/cli/vendor/github.com/docker/docker/api/types/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/types.go rename to cli/vendor/github.com/docker/docker/api/types/types.go diff --git a/fn/vendor/github.com/docker/docker/api/types/versions/README.md b/cli/vendor/github.com/docker/docker/api/types/versions/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/versions/README.md rename to cli/vendor/github.com/docker/docker/api/types/versions/README.md diff --git a/fn/vendor/github.com/docker/docker/api/types/versions/compare.go b/cli/vendor/github.com/docker/docker/api/types/versions/compare.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/versions/compare.go rename to cli/vendor/github.com/docker/docker/api/types/versions/compare.go diff --git a/fn/vendor/github.com/docker/docker/api/types/versions/compare_test.go b/cli/vendor/github.com/docker/docker/api/types/versions/compare_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/versions/compare_test.go rename to cli/vendor/github.com/docker/docker/api/types/versions/compare_test.go diff --git a/fn/vendor/github.com/docker/docker/api/types/versions/v1p19/types.go b/cli/vendor/github.com/docker/docker/api/types/versions/v1p19/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/versions/v1p19/types.go rename to cli/vendor/github.com/docker/docker/api/types/versions/v1p19/types.go diff --git a/fn/vendor/github.com/docker/docker/api/types/versions/v1p20/types.go b/cli/vendor/github.com/docker/docker/api/types/versions/v1p20/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/versions/v1p20/types.go rename to cli/vendor/github.com/docker/docker/api/types/versions/v1p20/types.go diff --git a/fn/vendor/github.com/docker/docker/api/types/volume.go b/cli/vendor/github.com/docker/docker/api/types/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/volume.go rename to cli/vendor/github.com/docker/docker/api/types/volume.go diff --git a/fn/vendor/github.com/docker/docker/api/types/volume/volumes_create.go b/cli/vendor/github.com/docker/docker/api/types/volume/volumes_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/volume/volumes_create.go rename to cli/vendor/github.com/docker/docker/api/types/volume/volumes_create.go diff --git a/fn/vendor/github.com/docker/docker/api/types/volume/volumes_list.go b/cli/vendor/github.com/docker/docker/api/types/volume/volumes_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/api/types/volume/volumes_list.go rename to cli/vendor/github.com/docker/docker/api/types/volume/volumes_list.go diff --git a/fn/vendor/github.com/docker/docker/builder/builder.go b/cli/vendor/github.com/docker/docker/builder/builder.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/builder.go rename to cli/vendor/github.com/docker/docker/builder/builder.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/bflag.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/bflag.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/bflag.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/bflag.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/bflag_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/bflag_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/bflag_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/bflag_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/buildargs.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/buildargs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/buildargs.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/buildargs.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/buildargs_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/buildargs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/buildargs_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/buildargs_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/builder.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/builder.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/builder.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/builder.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/builder_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/builder_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/builder_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/builder_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/builder_unix.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/builder_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/builder_unix.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/builder_unix.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/builder_windows.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/builder_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/builder_windows.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/builder_windows.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/command/command.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/command/command.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/command/command.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/command/command.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/dispatchers_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/envVarTest b/cli/vendor/github.com/docker/docker/builder/dockerfile/envVarTest similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/envVarTest rename to cli/vendor/github.com/docker/docker/builder/dockerfile/envVarTest diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator_unix.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator_unix.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator_unix.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator_windows.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/evaluator_windows.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/evaluator_windows.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/imagecontext.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/imagecontext.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/imagecontext.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/imagecontext.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/internals.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/internals.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/internals.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/internals.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/internals_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/internals_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/internals_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/internals_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/internals_unix.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/internals_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/internals_unix.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/internals_unix.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/internals_windows.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/internals_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/internals_windows.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/internals_windows.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/internals_windows_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/internals_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/internals_windows_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/internals_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/mockbackend_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/mockbackend_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/mockbackend_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/mockbackend_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/dumper/main.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/dumper/main.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/dumper/main.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/dumper/main.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/json_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/json_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/json_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/json_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/line_parsers_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/parser.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/parser.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/parser.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/parser.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/parser_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/parser_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/parser_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/parser_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/split_command.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/split_command.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/split_command.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/split_command.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfile-line/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfile-line/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfile-line/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfile-line/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-consuldock/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/continueIndent/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/docker/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/env/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-after-comment/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape-nonewline/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escape/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/escapes/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/flags/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/health/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/influxdb/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/json/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mail/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/multiple-volumes/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/mumble/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/nginx/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/tf2/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/weechat/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/Dockerfile b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/Dockerfile rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/result b/cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/result similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/result rename to cli/vendor/github.com/docker/docker/builder/dockerfile/parser/testfiles/znc/result diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/shell_parser.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/shell_parser.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/shell_parser.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/shell_parser.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/shell_parser_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/shell_parser_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/shell_parser_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/shell_parser_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/support.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/support.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/support.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/support.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/support_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/support_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/support_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/support_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/utils_test.go b/cli/vendor/github.com/docker/docker/builder/dockerfile/utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/utils_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerfile/utils_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerfile/wordsTest b/cli/vendor/github.com/docker/docker/builder/dockerfile/wordsTest similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerfile/wordsTest rename to cli/vendor/github.com/docker/docker/builder/dockerfile/wordsTest diff --git a/fn/vendor/github.com/docker/docker/builder/dockerignore.go b/cli/vendor/github.com/docker/docker/builder/dockerignore.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerignore.go rename to cli/vendor/github.com/docker/docker/builder/dockerignore.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerignore/dockerignore.go b/cli/vendor/github.com/docker/docker/builder/dockerignore/dockerignore.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerignore/dockerignore.go rename to cli/vendor/github.com/docker/docker/builder/dockerignore/dockerignore.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerignore/dockerignore_test.go b/cli/vendor/github.com/docker/docker/builder/dockerignore/dockerignore_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerignore/dockerignore_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerignore/dockerignore_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/dockerignore_test.go b/cli/vendor/github.com/docker/docker/builder/dockerignore_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/dockerignore_test.go rename to cli/vendor/github.com/docker/docker/builder/dockerignore_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/git.go b/cli/vendor/github.com/docker/docker/builder/git.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/git.go rename to cli/vendor/github.com/docker/docker/builder/git.go diff --git a/fn/vendor/github.com/docker/docker/builder/remote.go b/cli/vendor/github.com/docker/docker/builder/remote.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/remote.go rename to cli/vendor/github.com/docker/docker/builder/remote.go diff --git a/fn/vendor/github.com/docker/docker/builder/remote_test.go b/cli/vendor/github.com/docker/docker/builder/remote_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/remote_test.go rename to cli/vendor/github.com/docker/docker/builder/remote_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/remotecontext/filehash.go b/cli/vendor/github.com/docker/docker/builder/remotecontext/filehash.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/remotecontext/filehash.go rename to cli/vendor/github.com/docker/docker/builder/remotecontext/filehash.go diff --git a/fn/vendor/github.com/docker/docker/builder/remotecontext/lazycontext.go b/cli/vendor/github.com/docker/docker/builder/remotecontext/lazycontext.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/remotecontext/lazycontext.go rename to cli/vendor/github.com/docker/docker/builder/remotecontext/lazycontext.go diff --git a/fn/vendor/github.com/docker/docker/builder/tarsum.go b/cli/vendor/github.com/docker/docker/builder/tarsum.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/tarsum.go rename to cli/vendor/github.com/docker/docker/builder/tarsum.go diff --git a/fn/vendor/github.com/docker/docker/builder/tarsum_test.go b/cli/vendor/github.com/docker/docker/builder/tarsum_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/tarsum_test.go rename to cli/vendor/github.com/docker/docker/builder/tarsum_test.go diff --git a/fn/vendor/github.com/docker/docker/builder/utils_test.go b/cli/vendor/github.com/docker/docker/builder/utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/builder/utils_test.go rename to cli/vendor/github.com/docker/docker/builder/utils_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/cobra.go b/cli/vendor/github.com/docker/docker/cli/cobra.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/cobra.go rename to cli/vendor/github.com/docker/docker/cli/cobra.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile.go b/cli/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile.go rename to cli/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile_test.go b/cli/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile_test.go rename to cli/vendor/github.com/docker/docker/cli/command/bundlefile/bundlefile_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/checkpoint/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/checkpoint/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/checkpoint/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/checkpoint/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/checkpoint/create.go b/cli/vendor/github.com/docker/docker/cli/command/checkpoint/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/checkpoint/create.go rename to cli/vendor/github.com/docker/docker/cli/command/checkpoint/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/checkpoint/list.go b/cli/vendor/github.com/docker/docker/cli/command/checkpoint/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/checkpoint/list.go rename to cli/vendor/github.com/docker/docker/cli/command/checkpoint/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/checkpoint/remove.go b/cli/vendor/github.com/docker/docker/cli/command/checkpoint/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/checkpoint/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/checkpoint/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/cli.go b/cli/vendor/github.com/docker/docker/cli/command/cli.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/cli.go rename to cli/vendor/github.com/docker/docker/cli/command/cli.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/commands/commands.go b/cli/vendor/github.com/docker/docker/cli/command/commands/commands.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/commands/commands.go rename to cli/vendor/github.com/docker/docker/cli/command/commands/commands.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/attach.go b/cli/vendor/github.com/docker/docker/cli/command/container/attach.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/attach.go rename to cli/vendor/github.com/docker/docker/cli/command/container/attach.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/container/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/container/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/commit.go b/cli/vendor/github.com/docker/docker/cli/command/container/commit.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/commit.go rename to cli/vendor/github.com/docker/docker/cli/command/container/commit.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/cp.go b/cli/vendor/github.com/docker/docker/cli/command/container/cp.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/cp.go rename to cli/vendor/github.com/docker/docker/cli/command/container/cp.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/create.go b/cli/vendor/github.com/docker/docker/cli/command/container/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/create.go rename to cli/vendor/github.com/docker/docker/cli/command/container/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/diff.go b/cli/vendor/github.com/docker/docker/cli/command/container/diff.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/diff.go rename to cli/vendor/github.com/docker/docker/cli/command/container/diff.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/exec.go b/cli/vendor/github.com/docker/docker/cli/command/container/exec.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/exec.go rename to cli/vendor/github.com/docker/docker/cli/command/container/exec.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/exec_test.go b/cli/vendor/github.com/docker/docker/cli/command/container/exec_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/exec_test.go rename to cli/vendor/github.com/docker/docker/cli/command/container/exec_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/export.go b/cli/vendor/github.com/docker/docker/cli/command/container/export.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/export.go rename to cli/vendor/github.com/docker/docker/cli/command/container/export.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/hijack.go b/cli/vendor/github.com/docker/docker/cli/command/container/hijack.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/hijack.go rename to cli/vendor/github.com/docker/docker/cli/command/container/hijack.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/container/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/container/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/kill.go b/cli/vendor/github.com/docker/docker/cli/command/container/kill.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/kill.go rename to cli/vendor/github.com/docker/docker/cli/command/container/kill.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/list.go b/cli/vendor/github.com/docker/docker/cli/command/container/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/list.go rename to cli/vendor/github.com/docker/docker/cli/command/container/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/logs.go b/cli/vendor/github.com/docker/docker/cli/command/container/logs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/logs.go rename to cli/vendor/github.com/docker/docker/cli/command/container/logs.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/opts.go b/cli/vendor/github.com/docker/docker/cli/command/container/opts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/opts.go rename to cli/vendor/github.com/docker/docker/cli/command/container/opts.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/opts_test.go b/cli/vendor/github.com/docker/docker/cli/command/container/opts_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/opts_test.go rename to cli/vendor/github.com/docker/docker/cli/command/container/opts_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/pause.go b/cli/vendor/github.com/docker/docker/cli/command/container/pause.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/pause.go rename to cli/vendor/github.com/docker/docker/cli/command/container/pause.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/port.go b/cli/vendor/github.com/docker/docker/cli/command/container/port.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/port.go rename to cli/vendor/github.com/docker/docker/cli/command/container/port.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/prune.go b/cli/vendor/github.com/docker/docker/cli/command/container/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/prune.go rename to cli/vendor/github.com/docker/docker/cli/command/container/prune.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/ps_test.go b/cli/vendor/github.com/docker/docker/cli/command/container/ps_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/ps_test.go rename to cli/vendor/github.com/docker/docker/cli/command/container/ps_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/rename.go b/cli/vendor/github.com/docker/docker/cli/command/container/rename.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/rename.go rename to cli/vendor/github.com/docker/docker/cli/command/container/rename.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/restart.go b/cli/vendor/github.com/docker/docker/cli/command/container/restart.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/restart.go rename to cli/vendor/github.com/docker/docker/cli/command/container/restart.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/rm.go b/cli/vendor/github.com/docker/docker/cli/command/container/rm.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/rm.go rename to cli/vendor/github.com/docker/docker/cli/command/container/rm.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/run.go b/cli/vendor/github.com/docker/docker/cli/command/container/run.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/run.go rename to cli/vendor/github.com/docker/docker/cli/command/container/run.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/start.go b/cli/vendor/github.com/docker/docker/cli/command/container/start.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/start.go rename to cli/vendor/github.com/docker/docker/cli/command/container/start.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/stats.go b/cli/vendor/github.com/docker/docker/cli/command/container/stats.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/stats.go rename to cli/vendor/github.com/docker/docker/cli/command/container/stats.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/stats_helpers.go b/cli/vendor/github.com/docker/docker/cli/command/container/stats_helpers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/stats_helpers.go rename to cli/vendor/github.com/docker/docker/cli/command/container/stats_helpers.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/stats_unit_test.go b/cli/vendor/github.com/docker/docker/cli/command/container/stats_unit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/stats_unit_test.go rename to cli/vendor/github.com/docker/docker/cli/command/container/stats_unit_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/stop.go b/cli/vendor/github.com/docker/docker/cli/command/container/stop.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/stop.go rename to cli/vendor/github.com/docker/docker/cli/command/container/stop.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/testdata/utf16.env b/cli/vendor/github.com/docker/docker/cli/command/container/testdata/utf16.env similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/testdata/utf16.env rename to cli/vendor/github.com/docker/docker/cli/command/container/testdata/utf16.env diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/testdata/utf16be.env b/cli/vendor/github.com/docker/docker/cli/command/container/testdata/utf16be.env similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/testdata/utf16be.env rename to cli/vendor/github.com/docker/docker/cli/command/container/testdata/utf16be.env diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/testdata/utf8.env b/cli/vendor/github.com/docker/docker/cli/command/container/testdata/utf8.env similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/testdata/utf8.env rename to cli/vendor/github.com/docker/docker/cli/command/container/testdata/utf8.env diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/testdata/valid.env b/cli/vendor/github.com/docker/docker/cli/command/container/testdata/valid.env similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/testdata/valid.env rename to cli/vendor/github.com/docker/docker/cli/command/container/testdata/valid.env diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/testdata/valid.label b/cli/vendor/github.com/docker/docker/cli/command/container/testdata/valid.label similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/testdata/valid.label rename to cli/vendor/github.com/docker/docker/cli/command/container/testdata/valid.label diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/top.go b/cli/vendor/github.com/docker/docker/cli/command/container/top.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/top.go rename to cli/vendor/github.com/docker/docker/cli/command/container/top.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/tty.go b/cli/vendor/github.com/docker/docker/cli/command/container/tty.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/tty.go rename to cli/vendor/github.com/docker/docker/cli/command/container/tty.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/unpause.go b/cli/vendor/github.com/docker/docker/cli/command/container/unpause.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/unpause.go rename to cli/vendor/github.com/docker/docker/cli/command/container/unpause.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/update.go b/cli/vendor/github.com/docker/docker/cli/command/container/update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/update.go rename to cli/vendor/github.com/docker/docker/cli/command/container/update.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/utils.go b/cli/vendor/github.com/docker/docker/cli/command/container/utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/utils.go rename to cli/vendor/github.com/docker/docker/cli/command/container/utils.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/container/wait.go b/cli/vendor/github.com/docker/docker/cli/command/container/wait.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/container/wait.go rename to cli/vendor/github.com/docker/docker/cli/command/container/wait.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/events_utils.go b/cli/vendor/github.com/docker/docker/cli/command/events_utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/events_utils.go rename to cli/vendor/github.com/docker/docker/cli/command/events_utils.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/checkpoint.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/checkpoint.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/checkpoint.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/checkpoint.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/checkpoint_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/checkpoint_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/checkpoint_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/checkpoint_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/container.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/container.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/container.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/container_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/container_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/container_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/container_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/custom.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/custom.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/custom.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/custom.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/custom_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/custom_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/custom_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/custom_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/diff.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/diff.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/diff.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/diff.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/diff_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/diff_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/diff_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/diff_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/disk_usage.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/disk_usage.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/disk_usage.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/disk_usage.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/disk_usage_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/disk_usage_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/disk_usage_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/disk_usage_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/formatter.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/formatter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/formatter.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/formatter.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/image.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/image.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/image.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/image.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/image_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/image_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/image_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/image_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/network.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/network.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/network.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/network_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/network_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/network_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/network_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/node.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/node.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/node.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/node.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/node_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/node_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/node_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/node_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/plugin.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/plugin.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/plugin.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/plugin_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/plugin_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/plugin_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/plugin_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/reflect.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/reflect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/reflect.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/reflect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/reflect_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/reflect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/reflect_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/reflect_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/secret.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/secret.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/secret.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/secret.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/secret_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/secret_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/secret_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/secret_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/service.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/service.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/service.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/service_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/service_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/service_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/service_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/stats.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/stats.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/stats.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/stats.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/stats_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/stats_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/stats_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/stats_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/task.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/task.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/task.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/task.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/task_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/task_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/task_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/task_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/volume.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/volume.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/volume.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/formatter/volume_test.go b/cli/vendor/github.com/docker/docker/cli/command/formatter/volume_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/formatter/volume_test.go rename to cli/vendor/github.com/docker/docker/cli/command/formatter/volume_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/idresolver/client_test.go b/cli/vendor/github.com/docker/docker/cli/command/idresolver/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/idresolver/client_test.go rename to cli/vendor/github.com/docker/docker/cli/command/idresolver/client_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/idresolver/idresolver.go b/cli/vendor/github.com/docker/docker/cli/command/idresolver/idresolver.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/idresolver/idresolver.go rename to cli/vendor/github.com/docker/docker/cli/command/idresolver/idresolver.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/idresolver/idresolver_test.go b/cli/vendor/github.com/docker/docker/cli/command/idresolver/idresolver_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/idresolver/idresolver_test.go rename to cli/vendor/github.com/docker/docker/cli/command/idresolver/idresolver_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/build.go b/cli/vendor/github.com/docker/docker/cli/command/image/build.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/build.go rename to cli/vendor/github.com/docker/docker/cli/command/image/build.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/build/context.go b/cli/vendor/github.com/docker/docker/cli/command/image/build/context.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/build/context.go rename to cli/vendor/github.com/docker/docker/cli/command/image/build/context.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/build/context_test.go b/cli/vendor/github.com/docker/docker/cli/command/image/build/context_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/build/context_test.go rename to cli/vendor/github.com/docker/docker/cli/command/image/build/context_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/build/context_unix.go b/cli/vendor/github.com/docker/docker/cli/command/image/build/context_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/build/context_unix.go rename to cli/vendor/github.com/docker/docker/cli/command/image/build/context_unix.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/build/context_windows.go b/cli/vendor/github.com/docker/docker/cli/command/image/build/context_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/build/context_windows.go rename to cli/vendor/github.com/docker/docker/cli/command/image/build/context_windows.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/image/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/image/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/history.go b/cli/vendor/github.com/docker/docker/cli/command/image/history.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/history.go rename to cli/vendor/github.com/docker/docker/cli/command/image/history.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/import.go b/cli/vendor/github.com/docker/docker/cli/command/image/import.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/import.go rename to cli/vendor/github.com/docker/docker/cli/command/image/import.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/image/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/image/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/list.go b/cli/vendor/github.com/docker/docker/cli/command/image/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/list.go rename to cli/vendor/github.com/docker/docker/cli/command/image/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/load.go b/cli/vendor/github.com/docker/docker/cli/command/image/load.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/load.go rename to cli/vendor/github.com/docker/docker/cli/command/image/load.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/prune.go b/cli/vendor/github.com/docker/docker/cli/command/image/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/prune.go rename to cli/vendor/github.com/docker/docker/cli/command/image/prune.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/pull.go b/cli/vendor/github.com/docker/docker/cli/command/image/pull.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/pull.go rename to cli/vendor/github.com/docker/docker/cli/command/image/pull.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/push.go b/cli/vendor/github.com/docker/docker/cli/command/image/push.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/push.go rename to cli/vendor/github.com/docker/docker/cli/command/image/push.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/remove.go b/cli/vendor/github.com/docker/docker/cli/command/image/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/image/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/save.go b/cli/vendor/github.com/docker/docker/cli/command/image/save.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/save.go rename to cli/vendor/github.com/docker/docker/cli/command/image/save.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/tag.go b/cli/vendor/github.com/docker/docker/cli/command/image/tag.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/tag.go rename to cli/vendor/github.com/docker/docker/cli/command/image/tag.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/trust.go b/cli/vendor/github.com/docker/docker/cli/command/image/trust.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/trust.go rename to cli/vendor/github.com/docker/docker/cli/command/image/trust.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/image/trust_test.go b/cli/vendor/github.com/docker/docker/cli/command/image/trust_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/image/trust_test.go rename to cli/vendor/github.com/docker/docker/cli/command/image/trust_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/in.go b/cli/vendor/github.com/docker/docker/cli/command/in.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/in.go rename to cli/vendor/github.com/docker/docker/cli/command/in.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/inspect/inspector.go b/cli/vendor/github.com/docker/docker/cli/command/inspect/inspector.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/inspect/inspector.go rename to cli/vendor/github.com/docker/docker/cli/command/inspect/inspector.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/inspect/inspector_test.go b/cli/vendor/github.com/docker/docker/cli/command/inspect/inspector_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/inspect/inspector_test.go rename to cli/vendor/github.com/docker/docker/cli/command/inspect/inspector_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/network/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/network/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/connect.go b/cli/vendor/github.com/docker/docker/cli/command/network/connect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/connect.go rename to cli/vendor/github.com/docker/docker/cli/command/network/connect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/create.go b/cli/vendor/github.com/docker/docker/cli/command/network/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/create.go rename to cli/vendor/github.com/docker/docker/cli/command/network/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/disconnect.go b/cli/vendor/github.com/docker/docker/cli/command/network/disconnect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/disconnect.go rename to cli/vendor/github.com/docker/docker/cli/command/network/disconnect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/network/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/network/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/list.go b/cli/vendor/github.com/docker/docker/cli/command/network/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/list.go rename to cli/vendor/github.com/docker/docker/cli/command/network/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/prune.go b/cli/vendor/github.com/docker/docker/cli/command/network/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/prune.go rename to cli/vendor/github.com/docker/docker/cli/command/network/prune.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/network/remove.go b/cli/vendor/github.com/docker/docker/cli/command/network/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/network/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/network/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/client_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/client_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/client_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/node/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/node/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/demote.go b/cli/vendor/github.com/docker/docker/cli/command/node/demote.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/demote.go rename to cli/vendor/github.com/docker/docker/cli/command/node/demote.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/demote_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/demote_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/demote_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/demote_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/node/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/node/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/inspect_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/inspect_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/list.go b/cli/vendor/github.com/docker/docker/cli/command/node/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/list.go rename to cli/vendor/github.com/docker/docker/cli/command/node/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/list_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/list_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/list_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/opts.go b/cli/vendor/github.com/docker/docker/cli/command/node/opts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/opts.go rename to cli/vendor/github.com/docker/docker/cli/command/node/opts.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/promote.go b/cli/vendor/github.com/docker/docker/cli/command/node/promote.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/promote.go rename to cli/vendor/github.com/docker/docker/cli/command/node/promote.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/promote_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/promote_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/promote_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/promote_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/ps.go b/cli/vendor/github.com/docker/docker/cli/command/node/ps.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/ps.go rename to cli/vendor/github.com/docker/docker/cli/command/node/ps.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/ps_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/ps_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/ps_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/ps_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/remove.go b/cli/vendor/github.com/docker/docker/cli/command/node/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/node/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/remove_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/remove_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/remove_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden b/cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden rename to cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager.golden b/cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager.golden rename to cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.manager.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.simple.golden b/cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.simple.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.simple.golden rename to cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-inspect-pretty.simple.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.simple.golden b/cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.simple.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.simple.golden rename to cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.simple.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.with-errors.golden b/cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.with-errors.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.with-errors.golden rename to cli/vendor/github.com/docker/docker/cli/command/node/testdata/node-ps.with-errors.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/update.go b/cli/vendor/github.com/docker/docker/cli/command/node/update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/update.go rename to cli/vendor/github.com/docker/docker/cli/command/node/update.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/node/update_test.go b/cli/vendor/github.com/docker/docker/cli/command/node/update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/node/update_test.go rename to cli/vendor/github.com/docker/docker/cli/command/node/update_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/out.go b/cli/vendor/github.com/docker/docker/cli/command/out.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/out.go rename to cli/vendor/github.com/docker/docker/cli/command/out.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/create.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/create.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/disable.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/disable.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/disable.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/disable.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/enable.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/enable.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/enable.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/enable.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/install.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/install.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/install.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/install.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/list.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/list.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/push.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/push.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/push.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/push.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/remove.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/set.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/set.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/set.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/set.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/plugin/upgrade.go b/cli/vendor/github.com/docker/docker/cli/command/plugin/upgrade.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/plugin/upgrade.go rename to cli/vendor/github.com/docker/docker/cli/command/plugin/upgrade.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/prune/prune.go b/cli/vendor/github.com/docker/docker/cli/command/prune/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/prune/prune.go rename to cli/vendor/github.com/docker/docker/cli/command/prune/prune.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/registry.go b/cli/vendor/github.com/docker/docker/cli/command/registry.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/registry.go rename to cli/vendor/github.com/docker/docker/cli/command/registry.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/registry/login.go b/cli/vendor/github.com/docker/docker/cli/command/registry/login.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/registry/login.go rename to cli/vendor/github.com/docker/docker/cli/command/registry/login.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/registry/logout.go b/cli/vendor/github.com/docker/docker/cli/command/registry/logout.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/registry/logout.go rename to cli/vendor/github.com/docker/docker/cli/command/registry/logout.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/registry/search.go b/cli/vendor/github.com/docker/docker/cli/command/registry/search.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/registry/search.go rename to cli/vendor/github.com/docker/docker/cli/command/registry/search.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/client_test.go b/cli/vendor/github.com/docker/docker/cli/command/secret/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/client_test.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/client_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/secret/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/create.go b/cli/vendor/github.com/docker/docker/cli/command/secret/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/create.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/create_test.go b/cli/vendor/github.com/docker/docker/cli/command/secret/create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/create_test.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/create_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/secret/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/inspect_test.go b/cli/vendor/github.com/docker/docker/cli/command/secret/inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/inspect_test.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/ls.go b/cli/vendor/github.com/docker/docker/cli/command/secret/ls.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/ls.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/ls.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/ls_test.go b/cli/vendor/github.com/docker/docker/cli/command/secret/ls_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/ls_test.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/ls_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/remove.go b/cli/vendor/github.com/docker/docker/cli/command/secret/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/remove_test.go b/cli/vendor/github.com/docker/docker/cli/command/secret/remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/remove_test.go rename to cli/vendor/github.com/docker/docker/cli/command/secret/remove_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-create-with-name.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-create-with-name.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-create-with-name.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-create-with-name.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-config-format.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-config-format.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-config-format.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-config-format.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-filter.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-filter.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-filter.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-filter.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-format.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-format.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-format.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-format.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-quiet-option.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-quiet-option.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-quiet-option.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list-with-quiet-option.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list.golden b/cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list.golden rename to cli/vendor/github.com/docker/docker/cli/command/secret/testdata/secret-list.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/service/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/service/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/create.go b/cli/vendor/github.com/docker/docker/cli/command/service/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/create.go rename to cli/vendor/github.com/docker/docker/cli/command/service/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/helpers.go b/cli/vendor/github.com/docker/docker/cli/command/service/helpers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/helpers.go rename to cli/vendor/github.com/docker/docker/cli/command/service/helpers.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/service/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/service/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/inspect_test.go b/cli/vendor/github.com/docker/docker/cli/command/service/inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/inspect_test.go rename to cli/vendor/github.com/docker/docker/cli/command/service/inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/list.go b/cli/vendor/github.com/docker/docker/cli/command/service/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/list.go rename to cli/vendor/github.com/docker/docker/cli/command/service/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/logs.go b/cli/vendor/github.com/docker/docker/cli/command/service/logs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/logs.go rename to cli/vendor/github.com/docker/docker/cli/command/service/logs.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/opts.go b/cli/vendor/github.com/docker/docker/cli/command/service/opts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/opts.go rename to cli/vendor/github.com/docker/docker/cli/command/service/opts.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/opts_test.go b/cli/vendor/github.com/docker/docker/cli/command/service/opts_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/opts_test.go rename to cli/vendor/github.com/docker/docker/cli/command/service/opts_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/parse.go b/cli/vendor/github.com/docker/docker/cli/command/service/parse.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/parse.go rename to cli/vendor/github.com/docker/docker/cli/command/service/parse.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/progress/progress.go b/cli/vendor/github.com/docker/docker/cli/command/service/progress/progress.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/progress/progress.go rename to cli/vendor/github.com/docker/docker/cli/command/service/progress/progress.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/ps.go b/cli/vendor/github.com/docker/docker/cli/command/service/ps.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/ps.go rename to cli/vendor/github.com/docker/docker/cli/command/service/ps.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/remove.go b/cli/vendor/github.com/docker/docker/cli/command/service/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/service/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/scale.go b/cli/vendor/github.com/docker/docker/cli/command/service/scale.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/scale.go rename to cli/vendor/github.com/docker/docker/cli/command/service/scale.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/trust.go b/cli/vendor/github.com/docker/docker/cli/command/service/trust.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/trust.go rename to cli/vendor/github.com/docker/docker/cli/command/service/trust.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/update.go b/cli/vendor/github.com/docker/docker/cli/command/service/update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/update.go rename to cli/vendor/github.com/docker/docker/cli/command/service/update.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/service/update_test.go b/cli/vendor/github.com/docker/docker/cli/command/service/update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/service/update_test.go rename to cli/vendor/github.com/docker/docker/cli/command/service/update_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/client_test.go b/cli/vendor/github.com/docker/docker/cli/command/stack/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/client_test.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/client_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/stack/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/common.go b/cli/vendor/github.com/docker/docker/cli/command/stack/common.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/common.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/common.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/deploy.go b/cli/vendor/github.com/docker/docker/cli/command/stack/deploy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/deploy.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/deploy.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/deploy_bundlefile.go b/cli/vendor/github.com/docker/docker/cli/command/stack/deploy_bundlefile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/deploy_bundlefile.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/deploy_bundlefile.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/deploy_composefile.go b/cli/vendor/github.com/docker/docker/cli/command/stack/deploy_composefile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/deploy_composefile.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/deploy_composefile.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/deploy_test.go b/cli/vendor/github.com/docker/docker/cli/command/stack/deploy_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/deploy_test.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/deploy_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/list.go b/cli/vendor/github.com/docker/docker/cli/command/stack/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/list.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/opts.go b/cli/vendor/github.com/docker/docker/cli/command/stack/opts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/opts.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/opts.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/ps.go b/cli/vendor/github.com/docker/docker/cli/command/stack/ps.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/ps.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/ps.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/remove.go b/cli/vendor/github.com/docker/docker/cli/command/stack/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/remove_test.go b/cli/vendor/github.com/docker/docker/cli/command/stack/remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/remove_test.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/remove_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/stack/services.go b/cli/vendor/github.com/docker/docker/cli/command/stack/services.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/stack/services.go rename to cli/vendor/github.com/docker/docker/cli/command/stack/services.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/client_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/client_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/client_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/init.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/init.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/init.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/init.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/init_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/init_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/init_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/init_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/join.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/join.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/join.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/join.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/join_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/join_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/join_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/join_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/join_token.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/join_token.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/join_token.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/join_token.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/join_token_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/join_token_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/join_token_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/join_token_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/leave.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/leave.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/leave.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/leave.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/leave_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/leave_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/leave_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/leave_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/opts.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/opts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/opts.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/opts.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/opts_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/opts_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/opts_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/opts_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init-autolock.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init-autolock.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init-autolock.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init-autolock.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/init-init.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-quiet.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-quiet.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-quiet.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-quiet.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-rotate.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-rotate.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-rotate.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager-rotate.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-manager.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker-quiet.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker-quiet.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker-quiet.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker-quiet.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/jointoken-worker.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/unlockkeys-unlock-key.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-all-flags-quiet.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-all-flags-quiet.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-all-flags-quiet.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-all-flags-quiet.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-autolock-unlock-key.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-autolock-unlock-key.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-autolock-unlock-key.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-autolock-unlock-key.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-noargs.golden b/cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-noargs.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-noargs.golden rename to cli/vendor/github.com/docker/docker/cli/command/swarm/testdata/update-noargs.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/unlock.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/unlock.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/unlock.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/unlock.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/unlock_key.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/unlock_key.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/unlock_key.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/unlock_key.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/unlock_key_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/unlock_key_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/unlock_key_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/unlock_key_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/unlock_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/unlock_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/unlock_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/unlock_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/update.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/update.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/update.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/swarm/update_test.go b/cli/vendor/github.com/docker/docker/cli/command/swarm/update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/swarm/update_test.go rename to cli/vendor/github.com/docker/docker/cli/command/swarm/update_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/system/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/system/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/df.go b/cli/vendor/github.com/docker/docker/cli/command/system/df.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/df.go rename to cli/vendor/github.com/docker/docker/cli/command/system/df.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/events.go b/cli/vendor/github.com/docker/docker/cli/command/system/events.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/events.go rename to cli/vendor/github.com/docker/docker/cli/command/system/events.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/info.go b/cli/vendor/github.com/docker/docker/cli/command/system/info.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/info.go rename to cli/vendor/github.com/docker/docker/cli/command/system/info.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/system/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/system/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/prune.go b/cli/vendor/github.com/docker/docker/cli/command/system/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/prune.go rename to cli/vendor/github.com/docker/docker/cli/command/system/prune.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/system/version.go b/cli/vendor/github.com/docker/docker/cli/command/system/version.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/system/version.go rename to cli/vendor/github.com/docker/docker/cli/command/system/version.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/task/print.go b/cli/vendor/github.com/docker/docker/cli/command/task/print.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/task/print.go rename to cli/vendor/github.com/docker/docker/cli/command/task/print.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/trust.go b/cli/vendor/github.com/docker/docker/cli/command/trust.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/trust.go rename to cli/vendor/github.com/docker/docker/cli/command/trust.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/utils.go b/cli/vendor/github.com/docker/docker/cli/command/utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/utils.go rename to cli/vendor/github.com/docker/docker/cli/command/utils.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/client_test.go b/cli/vendor/github.com/docker/docker/cli/command/volume/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/client_test.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/client_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/cmd.go b/cli/vendor/github.com/docker/docker/cli/command/volume/cmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/cmd.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/cmd.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/create.go b/cli/vendor/github.com/docker/docker/cli/command/volume/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/create.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/create.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/create_test.go b/cli/vendor/github.com/docker/docker/cli/command/volume/create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/create_test.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/create_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/inspect.go b/cli/vendor/github.com/docker/docker/cli/command/volume/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/inspect.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/inspect.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/inspect_test.go b/cli/vendor/github.com/docker/docker/cli/command/volume/inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/inspect_test.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/list.go b/cli/vendor/github.com/docker/docker/cli/command/volume/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/list.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/list.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/list_test.go b/cli/vendor/github.com/docker/docker/cli/command/volume/list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/list_test.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/list_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/prune.go b/cli/vendor/github.com/docker/docker/cli/command/volume/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/prune.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/prune.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/prune_test.go b/cli/vendor/github.com/docker/docker/cli/command/volume/prune_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/prune_test.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/prune_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/remove.go b/cli/vendor/github.com/docker/docker/cli/command/volume/remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/remove.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/remove.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/remove_test.go b/cli/vendor/github.com/docker/docker/cli/command/volume/remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/remove_test.go rename to cli/vendor/github.com/docker/docker/cli/command/volume/remove_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-config-format.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-config-format.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-config-format.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-config-format.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-format.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-format.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-format.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-with-format.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-without-format.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-without-format.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-without-format.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-list-without-format.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-no.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-no.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-no.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-no.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-yes.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-yes.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-yes.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune-yes.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.deletedVolumes.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.deletedVolumes.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.deletedVolumes.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.deletedVolumes.golden diff --git a/fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.empty.golden b/cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.empty.golden similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.empty.golden rename to cli/vendor/github.com/docker/docker/cli/command/volume/testdata/volume-prune.empty.golden diff --git a/fn/vendor/github.com/docker/docker/cli/compose/convert/compose.go b/cli/vendor/github.com/docker/docker/cli/compose/convert/compose.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/convert/compose.go rename to cli/vendor/github.com/docker/docker/cli/compose/convert/compose.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/convert/compose_test.go b/cli/vendor/github.com/docker/docker/cli/compose/convert/compose_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/convert/compose_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/convert/compose_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/convert/service.go b/cli/vendor/github.com/docker/docker/cli/compose/convert/service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/convert/service.go rename to cli/vendor/github.com/docker/docker/cli/compose/convert/service.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/convert/service_test.go b/cli/vendor/github.com/docker/docker/cli/compose/convert/service_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/convert/service_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/convert/service_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/convert/volume.go b/cli/vendor/github.com/docker/docker/cli/compose/convert/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/convert/volume.go rename to cli/vendor/github.com/docker/docker/cli/compose/convert/volume.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/convert/volume_test.go b/cli/vendor/github.com/docker/docker/cli/compose/convert/volume_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/convert/volume_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/convert/volume_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation.go b/cli/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation.go rename to cli/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation_test.go b/cli/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/interpolation/interpolation_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/example1.env b/cli/vendor/github.com/docker/docker/cli/compose/loader/example1.env similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/example1.env rename to cli/vendor/github.com/docker/docker/cli/compose/loader/example1.env diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/example2.env b/cli/vendor/github.com/docker/docker/cli/compose/loader/example2.env similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/example2.env rename to cli/vendor/github.com/docker/docker/cli/compose/loader/example2.env diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/full-example.yml b/cli/vendor/github.com/docker/docker/cli/compose/loader/full-example.yml similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/full-example.yml rename to cli/vendor/github.com/docker/docker/cli/compose/loader/full-example.yml diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/loader.go b/cli/vendor/github.com/docker/docker/cli/compose/loader/loader.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/loader.go rename to cli/vendor/github.com/docker/docker/cli/compose/loader/loader.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/loader_test.go b/cli/vendor/github.com/docker/docker/cli/compose/loader/loader_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/loader_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/loader/loader_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/volume.go b/cli/vendor/github.com/docker/docker/cli/compose/loader/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/volume.go rename to cli/vendor/github.com/docker/docker/cli/compose/loader/volume.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/loader/volume_test.go b/cli/vendor/github.com/docker/docker/cli/compose/loader/volume_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/loader/volume_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/loader/volume_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/schema/bindata.go b/cli/vendor/github.com/docker/docker/cli/compose/schema/bindata.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/schema/bindata.go rename to cli/vendor/github.com/docker/docker/cli/compose/schema/bindata.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/schema/schema.go b/cli/vendor/github.com/docker/docker/cli/compose/schema/schema.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/schema/schema.go rename to cli/vendor/github.com/docker/docker/cli/compose/schema/schema.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/schema/schema_test.go b/cli/vendor/github.com/docker/docker/cli/compose/schema/schema_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/schema/schema_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/schema/schema_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/template/template.go b/cli/vendor/github.com/docker/docker/cli/compose/template/template.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/template/template.go rename to cli/vendor/github.com/docker/docker/cli/compose/template/template.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/template/template_test.go b/cli/vendor/github.com/docker/docker/cli/compose/template/template_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/template/template_test.go rename to cli/vendor/github.com/docker/docker/cli/compose/template/template_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/compose/types/types.go b/cli/vendor/github.com/docker/docker/cli/compose/types/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/compose/types/types.go rename to cli/vendor/github.com/docker/docker/cli/compose/types/types.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/config.go b/cli/vendor/github.com/docker/docker/cli/config/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/config.go rename to cli/vendor/github.com/docker/docker/cli/config/config.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/config_test.go b/cli/vendor/github.com/docker/docker/cli/config/config_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/config_test.go rename to cli/vendor/github.com/docker/docker/cli/config/config_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/configfile/file.go b/cli/vendor/github.com/docker/docker/cli/config/configfile/file.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/configfile/file.go rename to cli/vendor/github.com/docker/docker/cli/config/configfile/file.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/configfile/file_test.go b/cli/vendor/github.com/docker/docker/cli/config/configfile/file_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/configfile/file_test.go rename to cli/vendor/github.com/docker/docker/cli/config/configfile/file_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/credentials.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/credentials.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/credentials.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/credentials.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/default_store.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/default_store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/default_store.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/default_store.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_darwin.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_darwin.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_darwin.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_linux.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_linux.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_linux.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_unsupported.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_unsupported.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_windows.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/default_store_windows.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/default_store_windows.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/file_store.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/file_store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/file_store.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/file_store.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/file_store_test.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/file_store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/file_store_test.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/file_store_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/native_store.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/native_store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/native_store.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/native_store.go diff --git a/fn/vendor/github.com/docker/docker/cli/config/credentials/native_store_test.go b/cli/vendor/github.com/docker/docker/cli/config/credentials/native_store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/config/credentials/native_store_test.go rename to cli/vendor/github.com/docker/docker/cli/config/credentials/native_store_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/debug/debug.go b/cli/vendor/github.com/docker/docker/cli/debug/debug.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/debug/debug.go rename to cli/vendor/github.com/docker/docker/cli/debug/debug.go diff --git a/fn/vendor/github.com/docker/docker/cli/debug/debug_test.go b/cli/vendor/github.com/docker/docker/cli/debug/debug_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/debug/debug_test.go rename to cli/vendor/github.com/docker/docker/cli/debug/debug_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/error.go b/cli/vendor/github.com/docker/docker/cli/error.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/error.go rename to cli/vendor/github.com/docker/docker/cli/error.go diff --git a/fn/vendor/github.com/docker/docker/cli/flags/client.go b/cli/vendor/github.com/docker/docker/cli/flags/client.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/flags/client.go rename to cli/vendor/github.com/docker/docker/cli/flags/client.go diff --git a/fn/vendor/github.com/docker/docker/cli/flags/common.go b/cli/vendor/github.com/docker/docker/cli/flags/common.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/flags/common.go rename to cli/vendor/github.com/docker/docker/cli/flags/common.go diff --git a/fn/vendor/github.com/docker/docker/cli/flags/common_test.go b/cli/vendor/github.com/docker/docker/cli/flags/common_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/flags/common_test.go rename to cli/vendor/github.com/docker/docker/cli/flags/common_test.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/doc.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/doc.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/doc.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/doc.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/node.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/node.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/node.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/node.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/secret.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/secret.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/secret.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/secret.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/service.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/service.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/service.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/swarm.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/swarm.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/swarm.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/swarm.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/task.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/task.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/task.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/task.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/builders/volume.go b/cli/vendor/github.com/docker/docker/cli/internal/test/builders/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/builders/volume.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/builders/volume.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/cli.go b/cli/vendor/github.com/docker/docker/cli/internal/test/cli.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/cli.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/cli.go diff --git a/fn/vendor/github.com/docker/docker/cli/internal/test/doc.go b/cli/vendor/github.com/docker/docker/cli/internal/test/doc.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/internal/test/doc.go rename to cli/vendor/github.com/docker/docker/cli/internal/test/doc.go diff --git a/fn/vendor/github.com/docker/docker/cli/required.go b/cli/vendor/github.com/docker/docker/cli/required.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/required.go rename to cli/vendor/github.com/docker/docker/cli/required.go diff --git a/fn/vendor/github.com/docker/docker/cli/trust/trust.go b/cli/vendor/github.com/docker/docker/cli/trust/trust.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cli/trust/trust.go rename to cli/vendor/github.com/docker/docker/cli/trust/trust.go diff --git a/fn/vendor/github.com/docker/docker/client/README.md b/cli/vendor/github.com/docker/docker/client/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/client/README.md rename to cli/vendor/github.com/docker/docker/client/README.md diff --git a/fn/vendor/github.com/docker/docker/client/checkpoint_create.go b/cli/vendor/github.com/docker/docker/client/checkpoint_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/checkpoint_create.go rename to cli/vendor/github.com/docker/docker/client/checkpoint_create.go diff --git a/fn/vendor/github.com/docker/docker/client/checkpoint_create_test.go b/cli/vendor/github.com/docker/docker/client/checkpoint_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/checkpoint_create_test.go rename to cli/vendor/github.com/docker/docker/client/checkpoint_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/checkpoint_delete.go b/cli/vendor/github.com/docker/docker/client/checkpoint_delete.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/checkpoint_delete.go rename to cli/vendor/github.com/docker/docker/client/checkpoint_delete.go diff --git a/fn/vendor/github.com/docker/docker/client/checkpoint_delete_test.go b/cli/vendor/github.com/docker/docker/client/checkpoint_delete_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/checkpoint_delete_test.go rename to cli/vendor/github.com/docker/docker/client/checkpoint_delete_test.go diff --git a/fn/vendor/github.com/docker/docker/client/checkpoint_list.go b/cli/vendor/github.com/docker/docker/client/checkpoint_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/checkpoint_list.go rename to cli/vendor/github.com/docker/docker/client/checkpoint_list.go diff --git a/fn/vendor/github.com/docker/docker/client/checkpoint_list_test.go b/cli/vendor/github.com/docker/docker/client/checkpoint_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/checkpoint_list_test.go rename to cli/vendor/github.com/docker/docker/client/checkpoint_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/client.go b/cli/vendor/github.com/docker/docker/client/client.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/client.go rename to cli/vendor/github.com/docker/docker/client/client.go diff --git a/fn/vendor/github.com/docker/docker/client/client_mock_test.go b/cli/vendor/github.com/docker/docker/client/client_mock_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/client_mock_test.go rename to cli/vendor/github.com/docker/docker/client/client_mock_test.go diff --git a/fn/vendor/github.com/docker/docker/client/client_test.go b/cli/vendor/github.com/docker/docker/client/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/client_test.go rename to cli/vendor/github.com/docker/docker/client/client_test.go diff --git a/fn/vendor/github.com/docker/docker/client/client_unix.go b/cli/vendor/github.com/docker/docker/client/client_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/client_unix.go rename to cli/vendor/github.com/docker/docker/client/client_unix.go diff --git a/fn/vendor/github.com/docker/docker/client/client_windows.go b/cli/vendor/github.com/docker/docker/client/client_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/client_windows.go rename to cli/vendor/github.com/docker/docker/client/client_windows.go diff --git a/fn/vendor/github.com/docker/docker/client/container_attach.go b/cli/vendor/github.com/docker/docker/client/container_attach.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_attach.go rename to cli/vendor/github.com/docker/docker/client/container_attach.go diff --git a/fn/vendor/github.com/docker/docker/client/container_commit.go b/cli/vendor/github.com/docker/docker/client/container_commit.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_commit.go rename to cli/vendor/github.com/docker/docker/client/container_commit.go diff --git a/fn/vendor/github.com/docker/docker/client/container_commit_test.go b/cli/vendor/github.com/docker/docker/client/container_commit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_commit_test.go rename to cli/vendor/github.com/docker/docker/client/container_commit_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_copy.go b/cli/vendor/github.com/docker/docker/client/container_copy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_copy.go rename to cli/vendor/github.com/docker/docker/client/container_copy.go diff --git a/fn/vendor/github.com/docker/docker/client/container_copy_test.go b/cli/vendor/github.com/docker/docker/client/container_copy_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_copy_test.go rename to cli/vendor/github.com/docker/docker/client/container_copy_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_create.go b/cli/vendor/github.com/docker/docker/client/container_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_create.go rename to cli/vendor/github.com/docker/docker/client/container_create.go diff --git a/fn/vendor/github.com/docker/docker/client/container_create_test.go b/cli/vendor/github.com/docker/docker/client/container_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_create_test.go rename to cli/vendor/github.com/docker/docker/client/container_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_diff.go b/cli/vendor/github.com/docker/docker/client/container_diff.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_diff.go rename to cli/vendor/github.com/docker/docker/client/container_diff.go diff --git a/fn/vendor/github.com/docker/docker/client/container_diff_test.go b/cli/vendor/github.com/docker/docker/client/container_diff_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_diff_test.go rename to cli/vendor/github.com/docker/docker/client/container_diff_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_exec.go b/cli/vendor/github.com/docker/docker/client/container_exec.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_exec.go rename to cli/vendor/github.com/docker/docker/client/container_exec.go diff --git a/fn/vendor/github.com/docker/docker/client/container_exec_test.go b/cli/vendor/github.com/docker/docker/client/container_exec_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_exec_test.go rename to cli/vendor/github.com/docker/docker/client/container_exec_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_export.go b/cli/vendor/github.com/docker/docker/client/container_export.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_export.go rename to cli/vendor/github.com/docker/docker/client/container_export.go diff --git a/fn/vendor/github.com/docker/docker/client/container_export_test.go b/cli/vendor/github.com/docker/docker/client/container_export_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_export_test.go rename to cli/vendor/github.com/docker/docker/client/container_export_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_inspect.go b/cli/vendor/github.com/docker/docker/client/container_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_inspect.go rename to cli/vendor/github.com/docker/docker/client/container_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/container_inspect_test.go b/cli/vendor/github.com/docker/docker/client/container_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/container_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_kill.go b/cli/vendor/github.com/docker/docker/client/container_kill.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_kill.go rename to cli/vendor/github.com/docker/docker/client/container_kill.go diff --git a/fn/vendor/github.com/docker/docker/client/container_kill_test.go b/cli/vendor/github.com/docker/docker/client/container_kill_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_kill_test.go rename to cli/vendor/github.com/docker/docker/client/container_kill_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_list.go b/cli/vendor/github.com/docker/docker/client/container_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_list.go rename to cli/vendor/github.com/docker/docker/client/container_list.go diff --git a/fn/vendor/github.com/docker/docker/client/container_list_test.go b/cli/vendor/github.com/docker/docker/client/container_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_list_test.go rename to cli/vendor/github.com/docker/docker/client/container_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_logs.go b/cli/vendor/github.com/docker/docker/client/container_logs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_logs.go rename to cli/vendor/github.com/docker/docker/client/container_logs.go diff --git a/fn/vendor/github.com/docker/docker/client/container_logs_test.go b/cli/vendor/github.com/docker/docker/client/container_logs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_logs_test.go rename to cli/vendor/github.com/docker/docker/client/container_logs_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_pause.go b/cli/vendor/github.com/docker/docker/client/container_pause.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_pause.go rename to cli/vendor/github.com/docker/docker/client/container_pause.go diff --git a/fn/vendor/github.com/docker/docker/client/container_pause_test.go b/cli/vendor/github.com/docker/docker/client/container_pause_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_pause_test.go rename to cli/vendor/github.com/docker/docker/client/container_pause_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_prune.go b/cli/vendor/github.com/docker/docker/client/container_prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_prune.go rename to cli/vendor/github.com/docker/docker/client/container_prune.go diff --git a/fn/vendor/github.com/docker/docker/client/container_prune_test.go b/cli/vendor/github.com/docker/docker/client/container_prune_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_prune_test.go rename to cli/vendor/github.com/docker/docker/client/container_prune_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_remove.go b/cli/vendor/github.com/docker/docker/client/container_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_remove.go rename to cli/vendor/github.com/docker/docker/client/container_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/container_remove_test.go b/cli/vendor/github.com/docker/docker/client/container_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_remove_test.go rename to cli/vendor/github.com/docker/docker/client/container_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_rename.go b/cli/vendor/github.com/docker/docker/client/container_rename.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_rename.go rename to cli/vendor/github.com/docker/docker/client/container_rename.go diff --git a/fn/vendor/github.com/docker/docker/client/container_rename_test.go b/cli/vendor/github.com/docker/docker/client/container_rename_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_rename_test.go rename to cli/vendor/github.com/docker/docker/client/container_rename_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_resize.go b/cli/vendor/github.com/docker/docker/client/container_resize.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_resize.go rename to cli/vendor/github.com/docker/docker/client/container_resize.go diff --git a/fn/vendor/github.com/docker/docker/client/container_resize_test.go b/cli/vendor/github.com/docker/docker/client/container_resize_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_resize_test.go rename to cli/vendor/github.com/docker/docker/client/container_resize_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_restart.go b/cli/vendor/github.com/docker/docker/client/container_restart.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_restart.go rename to cli/vendor/github.com/docker/docker/client/container_restart.go diff --git a/fn/vendor/github.com/docker/docker/client/container_restart_test.go b/cli/vendor/github.com/docker/docker/client/container_restart_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_restart_test.go rename to cli/vendor/github.com/docker/docker/client/container_restart_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_start.go b/cli/vendor/github.com/docker/docker/client/container_start.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_start.go rename to cli/vendor/github.com/docker/docker/client/container_start.go diff --git a/fn/vendor/github.com/docker/docker/client/container_start_test.go b/cli/vendor/github.com/docker/docker/client/container_start_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_start_test.go rename to cli/vendor/github.com/docker/docker/client/container_start_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_stats.go b/cli/vendor/github.com/docker/docker/client/container_stats.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_stats.go rename to cli/vendor/github.com/docker/docker/client/container_stats.go diff --git a/fn/vendor/github.com/docker/docker/client/container_stats_test.go b/cli/vendor/github.com/docker/docker/client/container_stats_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_stats_test.go rename to cli/vendor/github.com/docker/docker/client/container_stats_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_stop.go b/cli/vendor/github.com/docker/docker/client/container_stop.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_stop.go rename to cli/vendor/github.com/docker/docker/client/container_stop.go diff --git a/fn/vendor/github.com/docker/docker/client/container_stop_test.go b/cli/vendor/github.com/docker/docker/client/container_stop_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_stop_test.go rename to cli/vendor/github.com/docker/docker/client/container_stop_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_top.go b/cli/vendor/github.com/docker/docker/client/container_top.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_top.go rename to cli/vendor/github.com/docker/docker/client/container_top.go diff --git a/fn/vendor/github.com/docker/docker/client/container_top_test.go b/cli/vendor/github.com/docker/docker/client/container_top_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_top_test.go rename to cli/vendor/github.com/docker/docker/client/container_top_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_unpause.go b/cli/vendor/github.com/docker/docker/client/container_unpause.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_unpause.go rename to cli/vendor/github.com/docker/docker/client/container_unpause.go diff --git a/fn/vendor/github.com/docker/docker/client/container_unpause_test.go b/cli/vendor/github.com/docker/docker/client/container_unpause_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_unpause_test.go rename to cli/vendor/github.com/docker/docker/client/container_unpause_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_update.go b/cli/vendor/github.com/docker/docker/client/container_update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_update.go rename to cli/vendor/github.com/docker/docker/client/container_update.go diff --git a/fn/vendor/github.com/docker/docker/client/container_update_test.go b/cli/vendor/github.com/docker/docker/client/container_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_update_test.go rename to cli/vendor/github.com/docker/docker/client/container_update_test.go diff --git a/fn/vendor/github.com/docker/docker/client/container_wait.go b/cli/vendor/github.com/docker/docker/client/container_wait.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_wait.go rename to cli/vendor/github.com/docker/docker/client/container_wait.go diff --git a/fn/vendor/github.com/docker/docker/client/container_wait_test.go b/cli/vendor/github.com/docker/docker/client/container_wait_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/container_wait_test.go rename to cli/vendor/github.com/docker/docker/client/container_wait_test.go diff --git a/fn/vendor/github.com/docker/docker/client/disk_usage.go b/cli/vendor/github.com/docker/docker/client/disk_usage.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/disk_usage.go rename to cli/vendor/github.com/docker/docker/client/disk_usage.go diff --git a/fn/vendor/github.com/docker/docker/client/errors.go b/cli/vendor/github.com/docker/docker/client/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/errors.go rename to cli/vendor/github.com/docker/docker/client/errors.go diff --git a/fn/vendor/github.com/docker/docker/client/events.go b/cli/vendor/github.com/docker/docker/client/events.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/events.go rename to cli/vendor/github.com/docker/docker/client/events.go diff --git a/fn/vendor/github.com/docker/docker/client/events_test.go b/cli/vendor/github.com/docker/docker/client/events_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/events_test.go rename to cli/vendor/github.com/docker/docker/client/events_test.go diff --git a/fn/vendor/github.com/docker/docker/client/hijack.go b/cli/vendor/github.com/docker/docker/client/hijack.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/hijack.go rename to cli/vendor/github.com/docker/docker/client/hijack.go diff --git a/fn/vendor/github.com/docker/docker/client/image_build.go b/cli/vendor/github.com/docker/docker/client/image_build.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_build.go rename to cli/vendor/github.com/docker/docker/client/image_build.go diff --git a/fn/vendor/github.com/docker/docker/client/image_build_test.go b/cli/vendor/github.com/docker/docker/client/image_build_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_build_test.go rename to cli/vendor/github.com/docker/docker/client/image_build_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_create.go b/cli/vendor/github.com/docker/docker/client/image_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_create.go rename to cli/vendor/github.com/docker/docker/client/image_create.go diff --git a/fn/vendor/github.com/docker/docker/client/image_create_test.go b/cli/vendor/github.com/docker/docker/client/image_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_create_test.go rename to cli/vendor/github.com/docker/docker/client/image_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_history.go b/cli/vendor/github.com/docker/docker/client/image_history.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_history.go rename to cli/vendor/github.com/docker/docker/client/image_history.go diff --git a/fn/vendor/github.com/docker/docker/client/image_history_test.go b/cli/vendor/github.com/docker/docker/client/image_history_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_history_test.go rename to cli/vendor/github.com/docker/docker/client/image_history_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_import.go b/cli/vendor/github.com/docker/docker/client/image_import.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_import.go rename to cli/vendor/github.com/docker/docker/client/image_import.go diff --git a/fn/vendor/github.com/docker/docker/client/image_import_test.go b/cli/vendor/github.com/docker/docker/client/image_import_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_import_test.go rename to cli/vendor/github.com/docker/docker/client/image_import_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_inspect.go b/cli/vendor/github.com/docker/docker/client/image_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_inspect.go rename to cli/vendor/github.com/docker/docker/client/image_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/image_inspect_test.go b/cli/vendor/github.com/docker/docker/client/image_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/image_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_list.go b/cli/vendor/github.com/docker/docker/client/image_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_list.go rename to cli/vendor/github.com/docker/docker/client/image_list.go diff --git a/fn/vendor/github.com/docker/docker/client/image_list_test.go b/cli/vendor/github.com/docker/docker/client/image_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_list_test.go rename to cli/vendor/github.com/docker/docker/client/image_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_load.go b/cli/vendor/github.com/docker/docker/client/image_load.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_load.go rename to cli/vendor/github.com/docker/docker/client/image_load.go diff --git a/fn/vendor/github.com/docker/docker/client/image_load_test.go b/cli/vendor/github.com/docker/docker/client/image_load_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_load_test.go rename to cli/vendor/github.com/docker/docker/client/image_load_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_prune.go b/cli/vendor/github.com/docker/docker/client/image_prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_prune.go rename to cli/vendor/github.com/docker/docker/client/image_prune.go diff --git a/fn/vendor/github.com/docker/docker/client/image_prune_test.go b/cli/vendor/github.com/docker/docker/client/image_prune_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_prune_test.go rename to cli/vendor/github.com/docker/docker/client/image_prune_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_pull.go b/cli/vendor/github.com/docker/docker/client/image_pull.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_pull.go rename to cli/vendor/github.com/docker/docker/client/image_pull.go diff --git a/fn/vendor/github.com/docker/docker/client/image_pull_test.go b/cli/vendor/github.com/docker/docker/client/image_pull_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_pull_test.go rename to cli/vendor/github.com/docker/docker/client/image_pull_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_push.go b/cli/vendor/github.com/docker/docker/client/image_push.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_push.go rename to cli/vendor/github.com/docker/docker/client/image_push.go diff --git a/fn/vendor/github.com/docker/docker/client/image_push_test.go b/cli/vendor/github.com/docker/docker/client/image_push_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_push_test.go rename to cli/vendor/github.com/docker/docker/client/image_push_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_remove.go b/cli/vendor/github.com/docker/docker/client/image_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_remove.go rename to cli/vendor/github.com/docker/docker/client/image_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/image_remove_test.go b/cli/vendor/github.com/docker/docker/client/image_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_remove_test.go rename to cli/vendor/github.com/docker/docker/client/image_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_save.go b/cli/vendor/github.com/docker/docker/client/image_save.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_save.go rename to cli/vendor/github.com/docker/docker/client/image_save.go diff --git a/fn/vendor/github.com/docker/docker/client/image_save_test.go b/cli/vendor/github.com/docker/docker/client/image_save_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_save_test.go rename to cli/vendor/github.com/docker/docker/client/image_save_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_search.go b/cli/vendor/github.com/docker/docker/client/image_search.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_search.go rename to cli/vendor/github.com/docker/docker/client/image_search.go diff --git a/fn/vendor/github.com/docker/docker/client/image_search_test.go b/cli/vendor/github.com/docker/docker/client/image_search_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_search_test.go rename to cli/vendor/github.com/docker/docker/client/image_search_test.go diff --git a/fn/vendor/github.com/docker/docker/client/image_tag.go b/cli/vendor/github.com/docker/docker/client/image_tag.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_tag.go rename to cli/vendor/github.com/docker/docker/client/image_tag.go diff --git a/fn/vendor/github.com/docker/docker/client/image_tag_test.go b/cli/vendor/github.com/docker/docker/client/image_tag_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/image_tag_test.go rename to cli/vendor/github.com/docker/docker/client/image_tag_test.go diff --git a/fn/vendor/github.com/docker/docker/client/info.go b/cli/vendor/github.com/docker/docker/client/info.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/info.go rename to cli/vendor/github.com/docker/docker/client/info.go diff --git a/fn/vendor/github.com/docker/docker/client/info_test.go b/cli/vendor/github.com/docker/docker/client/info_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/info_test.go rename to cli/vendor/github.com/docker/docker/client/info_test.go diff --git a/fn/vendor/github.com/docker/docker/client/interface.go b/cli/vendor/github.com/docker/docker/client/interface.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/interface.go rename to cli/vendor/github.com/docker/docker/client/interface.go diff --git a/fn/vendor/github.com/docker/docker/client/interface_experimental.go b/cli/vendor/github.com/docker/docker/client/interface_experimental.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/interface_experimental.go rename to cli/vendor/github.com/docker/docker/client/interface_experimental.go diff --git a/fn/vendor/github.com/docker/docker/client/interface_stable.go b/cli/vendor/github.com/docker/docker/client/interface_stable.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/interface_stable.go rename to cli/vendor/github.com/docker/docker/client/interface_stable.go diff --git a/fn/vendor/github.com/docker/docker/client/login.go b/cli/vendor/github.com/docker/docker/client/login.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/login.go rename to cli/vendor/github.com/docker/docker/client/login.go diff --git a/fn/vendor/github.com/docker/docker/client/network_connect.go b/cli/vendor/github.com/docker/docker/client/network_connect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_connect.go rename to cli/vendor/github.com/docker/docker/client/network_connect.go diff --git a/fn/vendor/github.com/docker/docker/client/network_connect_test.go b/cli/vendor/github.com/docker/docker/client/network_connect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_connect_test.go rename to cli/vendor/github.com/docker/docker/client/network_connect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/network_create.go b/cli/vendor/github.com/docker/docker/client/network_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_create.go rename to cli/vendor/github.com/docker/docker/client/network_create.go diff --git a/fn/vendor/github.com/docker/docker/client/network_create_test.go b/cli/vendor/github.com/docker/docker/client/network_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_create_test.go rename to cli/vendor/github.com/docker/docker/client/network_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/network_disconnect.go b/cli/vendor/github.com/docker/docker/client/network_disconnect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_disconnect.go rename to cli/vendor/github.com/docker/docker/client/network_disconnect.go diff --git a/fn/vendor/github.com/docker/docker/client/network_disconnect_test.go b/cli/vendor/github.com/docker/docker/client/network_disconnect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_disconnect_test.go rename to cli/vendor/github.com/docker/docker/client/network_disconnect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/network_inspect.go b/cli/vendor/github.com/docker/docker/client/network_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_inspect.go rename to cli/vendor/github.com/docker/docker/client/network_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/network_inspect_test.go b/cli/vendor/github.com/docker/docker/client/network_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/network_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/network_list.go b/cli/vendor/github.com/docker/docker/client/network_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_list.go rename to cli/vendor/github.com/docker/docker/client/network_list.go diff --git a/fn/vendor/github.com/docker/docker/client/network_list_test.go b/cli/vendor/github.com/docker/docker/client/network_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_list_test.go rename to cli/vendor/github.com/docker/docker/client/network_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/network_prune.go b/cli/vendor/github.com/docker/docker/client/network_prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_prune.go rename to cli/vendor/github.com/docker/docker/client/network_prune.go diff --git a/fn/vendor/github.com/docker/docker/client/network_prune_test.go b/cli/vendor/github.com/docker/docker/client/network_prune_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_prune_test.go rename to cli/vendor/github.com/docker/docker/client/network_prune_test.go diff --git a/fn/vendor/github.com/docker/docker/client/network_remove.go b/cli/vendor/github.com/docker/docker/client/network_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_remove.go rename to cli/vendor/github.com/docker/docker/client/network_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/network_remove_test.go b/cli/vendor/github.com/docker/docker/client/network_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/network_remove_test.go rename to cli/vendor/github.com/docker/docker/client/network_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/node_inspect.go b/cli/vendor/github.com/docker/docker/client/node_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_inspect.go rename to cli/vendor/github.com/docker/docker/client/node_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/node_inspect_test.go b/cli/vendor/github.com/docker/docker/client/node_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/node_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/node_list.go b/cli/vendor/github.com/docker/docker/client/node_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_list.go rename to cli/vendor/github.com/docker/docker/client/node_list.go diff --git a/fn/vendor/github.com/docker/docker/client/node_list_test.go b/cli/vendor/github.com/docker/docker/client/node_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_list_test.go rename to cli/vendor/github.com/docker/docker/client/node_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/node_remove.go b/cli/vendor/github.com/docker/docker/client/node_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_remove.go rename to cli/vendor/github.com/docker/docker/client/node_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/node_remove_test.go b/cli/vendor/github.com/docker/docker/client/node_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_remove_test.go rename to cli/vendor/github.com/docker/docker/client/node_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/node_update.go b/cli/vendor/github.com/docker/docker/client/node_update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_update.go rename to cli/vendor/github.com/docker/docker/client/node_update.go diff --git a/fn/vendor/github.com/docker/docker/client/node_update_test.go b/cli/vendor/github.com/docker/docker/client/node_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/node_update_test.go rename to cli/vendor/github.com/docker/docker/client/node_update_test.go diff --git a/fn/vendor/github.com/docker/docker/client/ping.go b/cli/vendor/github.com/docker/docker/client/ping.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/ping.go rename to cli/vendor/github.com/docker/docker/client/ping.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_create.go b/cli/vendor/github.com/docker/docker/client/plugin_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_create.go rename to cli/vendor/github.com/docker/docker/client/plugin_create.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_disable.go b/cli/vendor/github.com/docker/docker/client/plugin_disable.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_disable.go rename to cli/vendor/github.com/docker/docker/client/plugin_disable.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_disable_test.go b/cli/vendor/github.com/docker/docker/client/plugin_disable_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_disable_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_disable_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_enable.go b/cli/vendor/github.com/docker/docker/client/plugin_enable.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_enable.go rename to cli/vendor/github.com/docker/docker/client/plugin_enable.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_enable_test.go b/cli/vendor/github.com/docker/docker/client/plugin_enable_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_enable_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_enable_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_inspect.go b/cli/vendor/github.com/docker/docker/client/plugin_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_inspect.go rename to cli/vendor/github.com/docker/docker/client/plugin_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_inspect_test.go b/cli/vendor/github.com/docker/docker/client/plugin_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_install.go b/cli/vendor/github.com/docker/docker/client/plugin_install.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_install.go rename to cli/vendor/github.com/docker/docker/client/plugin_install.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_list.go b/cli/vendor/github.com/docker/docker/client/plugin_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_list.go rename to cli/vendor/github.com/docker/docker/client/plugin_list.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_list_test.go b/cli/vendor/github.com/docker/docker/client/plugin_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_list_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_push.go b/cli/vendor/github.com/docker/docker/client/plugin_push.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_push.go rename to cli/vendor/github.com/docker/docker/client/plugin_push.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_push_test.go b/cli/vendor/github.com/docker/docker/client/plugin_push_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_push_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_push_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_remove.go b/cli/vendor/github.com/docker/docker/client/plugin_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_remove.go rename to cli/vendor/github.com/docker/docker/client/plugin_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_remove_test.go b/cli/vendor/github.com/docker/docker/client/plugin_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_remove_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_set.go b/cli/vendor/github.com/docker/docker/client/plugin_set.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_set.go rename to cli/vendor/github.com/docker/docker/client/plugin_set.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_set_test.go b/cli/vendor/github.com/docker/docker/client/plugin_set_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_set_test.go rename to cli/vendor/github.com/docker/docker/client/plugin_set_test.go diff --git a/fn/vendor/github.com/docker/docker/client/plugin_upgrade.go b/cli/vendor/github.com/docker/docker/client/plugin_upgrade.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/plugin_upgrade.go rename to cli/vendor/github.com/docker/docker/client/plugin_upgrade.go diff --git a/fn/vendor/github.com/docker/docker/client/request.go b/cli/vendor/github.com/docker/docker/client/request.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/request.go rename to cli/vendor/github.com/docker/docker/client/request.go diff --git a/fn/vendor/github.com/docker/docker/client/request_test.go b/cli/vendor/github.com/docker/docker/client/request_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/request_test.go rename to cli/vendor/github.com/docker/docker/client/request_test.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_create.go b/cli/vendor/github.com/docker/docker/client/secret_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_create.go rename to cli/vendor/github.com/docker/docker/client/secret_create.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_create_test.go b/cli/vendor/github.com/docker/docker/client/secret_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_create_test.go rename to cli/vendor/github.com/docker/docker/client/secret_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_inspect.go b/cli/vendor/github.com/docker/docker/client/secret_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_inspect.go rename to cli/vendor/github.com/docker/docker/client/secret_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_inspect_test.go b/cli/vendor/github.com/docker/docker/client/secret_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/secret_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_list.go b/cli/vendor/github.com/docker/docker/client/secret_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_list.go rename to cli/vendor/github.com/docker/docker/client/secret_list.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_list_test.go b/cli/vendor/github.com/docker/docker/client/secret_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_list_test.go rename to cli/vendor/github.com/docker/docker/client/secret_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_remove.go b/cli/vendor/github.com/docker/docker/client/secret_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_remove.go rename to cli/vendor/github.com/docker/docker/client/secret_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_remove_test.go b/cli/vendor/github.com/docker/docker/client/secret_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_remove_test.go rename to cli/vendor/github.com/docker/docker/client/secret_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_update.go b/cli/vendor/github.com/docker/docker/client/secret_update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_update.go rename to cli/vendor/github.com/docker/docker/client/secret_update.go diff --git a/fn/vendor/github.com/docker/docker/client/secret_update_test.go b/cli/vendor/github.com/docker/docker/client/secret_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/secret_update_test.go rename to cli/vendor/github.com/docker/docker/client/secret_update_test.go diff --git a/fn/vendor/github.com/docker/docker/client/service_create.go b/cli/vendor/github.com/docker/docker/client/service_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_create.go rename to cli/vendor/github.com/docker/docker/client/service_create.go diff --git a/fn/vendor/github.com/docker/docker/client/service_create_test.go b/cli/vendor/github.com/docker/docker/client/service_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_create_test.go rename to cli/vendor/github.com/docker/docker/client/service_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/service_inspect.go b/cli/vendor/github.com/docker/docker/client/service_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_inspect.go rename to cli/vendor/github.com/docker/docker/client/service_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/service_inspect_test.go b/cli/vendor/github.com/docker/docker/client/service_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/service_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/service_list.go b/cli/vendor/github.com/docker/docker/client/service_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_list.go rename to cli/vendor/github.com/docker/docker/client/service_list.go diff --git a/fn/vendor/github.com/docker/docker/client/service_list_test.go b/cli/vendor/github.com/docker/docker/client/service_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_list_test.go rename to cli/vendor/github.com/docker/docker/client/service_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/service_logs.go b/cli/vendor/github.com/docker/docker/client/service_logs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_logs.go rename to cli/vendor/github.com/docker/docker/client/service_logs.go diff --git a/fn/vendor/github.com/docker/docker/client/service_logs_test.go b/cli/vendor/github.com/docker/docker/client/service_logs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_logs_test.go rename to cli/vendor/github.com/docker/docker/client/service_logs_test.go diff --git a/fn/vendor/github.com/docker/docker/client/service_remove.go b/cli/vendor/github.com/docker/docker/client/service_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_remove.go rename to cli/vendor/github.com/docker/docker/client/service_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/service_remove_test.go b/cli/vendor/github.com/docker/docker/client/service_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_remove_test.go rename to cli/vendor/github.com/docker/docker/client/service_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/client/service_update.go b/cli/vendor/github.com/docker/docker/client/service_update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_update.go rename to cli/vendor/github.com/docker/docker/client/service_update.go diff --git a/fn/vendor/github.com/docker/docker/client/service_update_test.go b/cli/vendor/github.com/docker/docker/client/service_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/service_update_test.go rename to cli/vendor/github.com/docker/docker/client/service_update_test.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_get_unlock_key.go b/cli/vendor/github.com/docker/docker/client/swarm_get_unlock_key.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_get_unlock_key.go rename to cli/vendor/github.com/docker/docker/client/swarm_get_unlock_key.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_init.go b/cli/vendor/github.com/docker/docker/client/swarm_init.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_init.go rename to cli/vendor/github.com/docker/docker/client/swarm_init.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_init_test.go b/cli/vendor/github.com/docker/docker/client/swarm_init_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_init_test.go rename to cli/vendor/github.com/docker/docker/client/swarm_init_test.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_inspect.go b/cli/vendor/github.com/docker/docker/client/swarm_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_inspect.go rename to cli/vendor/github.com/docker/docker/client/swarm_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_inspect_test.go b/cli/vendor/github.com/docker/docker/client/swarm_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/swarm_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_join.go b/cli/vendor/github.com/docker/docker/client/swarm_join.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_join.go rename to cli/vendor/github.com/docker/docker/client/swarm_join.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_join_test.go b/cli/vendor/github.com/docker/docker/client/swarm_join_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_join_test.go rename to cli/vendor/github.com/docker/docker/client/swarm_join_test.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_leave.go b/cli/vendor/github.com/docker/docker/client/swarm_leave.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_leave.go rename to cli/vendor/github.com/docker/docker/client/swarm_leave.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_leave_test.go b/cli/vendor/github.com/docker/docker/client/swarm_leave_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_leave_test.go rename to cli/vendor/github.com/docker/docker/client/swarm_leave_test.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_unlock.go b/cli/vendor/github.com/docker/docker/client/swarm_unlock.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_unlock.go rename to cli/vendor/github.com/docker/docker/client/swarm_unlock.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_update.go b/cli/vendor/github.com/docker/docker/client/swarm_update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_update.go rename to cli/vendor/github.com/docker/docker/client/swarm_update.go diff --git a/fn/vendor/github.com/docker/docker/client/swarm_update_test.go b/cli/vendor/github.com/docker/docker/client/swarm_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/swarm_update_test.go rename to cli/vendor/github.com/docker/docker/client/swarm_update_test.go diff --git a/fn/vendor/github.com/docker/docker/client/task_inspect.go b/cli/vendor/github.com/docker/docker/client/task_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/task_inspect.go rename to cli/vendor/github.com/docker/docker/client/task_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/task_inspect_test.go b/cli/vendor/github.com/docker/docker/client/task_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/task_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/task_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/task_list.go b/cli/vendor/github.com/docker/docker/client/task_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/task_list.go rename to cli/vendor/github.com/docker/docker/client/task_list.go diff --git a/fn/vendor/github.com/docker/docker/client/task_list_test.go b/cli/vendor/github.com/docker/docker/client/task_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/task_list_test.go rename to cli/vendor/github.com/docker/docker/client/task_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/task_logs.go b/cli/vendor/github.com/docker/docker/client/task_logs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/task_logs.go rename to cli/vendor/github.com/docker/docker/client/task_logs.go diff --git a/fn/vendor/github.com/docker/docker/client/transport.go b/cli/vendor/github.com/docker/docker/client/transport.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/transport.go rename to cli/vendor/github.com/docker/docker/client/transport.go diff --git a/fn/vendor/github.com/docker/docker/client/utils.go b/cli/vendor/github.com/docker/docker/client/utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/utils.go rename to cli/vendor/github.com/docker/docker/client/utils.go diff --git a/fn/vendor/github.com/docker/docker/client/version.go b/cli/vendor/github.com/docker/docker/client/version.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/version.go rename to cli/vendor/github.com/docker/docker/client/version.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_create.go b/cli/vendor/github.com/docker/docker/client/volume_create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_create.go rename to cli/vendor/github.com/docker/docker/client/volume_create.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_create_test.go b/cli/vendor/github.com/docker/docker/client/volume_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_create_test.go rename to cli/vendor/github.com/docker/docker/client/volume_create_test.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_inspect.go b/cli/vendor/github.com/docker/docker/client/volume_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_inspect.go rename to cli/vendor/github.com/docker/docker/client/volume_inspect.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_inspect_test.go b/cli/vendor/github.com/docker/docker/client/volume_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_inspect_test.go rename to cli/vendor/github.com/docker/docker/client/volume_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_list.go b/cli/vendor/github.com/docker/docker/client/volume_list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_list.go rename to cli/vendor/github.com/docker/docker/client/volume_list.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_list_test.go b/cli/vendor/github.com/docker/docker/client/volume_list_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_list_test.go rename to cli/vendor/github.com/docker/docker/client/volume_list_test.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_prune.go b/cli/vendor/github.com/docker/docker/client/volume_prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_prune.go rename to cli/vendor/github.com/docker/docker/client/volume_prune.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_remove.go b/cli/vendor/github.com/docker/docker/client/volume_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_remove.go rename to cli/vendor/github.com/docker/docker/client/volume_remove.go diff --git a/fn/vendor/github.com/docker/docker/client/volume_remove_test.go b/cli/vendor/github.com/docker/docker/client/volume_remove_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/client/volume_remove_test.go rename to cli/vendor/github.com/docker/docker/client/volume_remove_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/daemon_none.go b/cli/vendor/github.com/docker/docker/cmd/docker/daemon_none.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/daemon_none.go rename to cli/vendor/github.com/docker/docker/cmd/docker/daemon_none.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/daemon_none_test.go b/cli/vendor/github.com/docker/docker/cmd/docker/daemon_none_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/daemon_none_test.go rename to cli/vendor/github.com/docker/docker/cmd/docker/daemon_none_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/daemon_unit_test.go b/cli/vendor/github.com/docker/docker/cmd/docker/daemon_unit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/daemon_unit_test.go rename to cli/vendor/github.com/docker/docker/cmd/docker/daemon_unit_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/daemon_unix.go b/cli/vendor/github.com/docker/docker/cmd/docker/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/daemon_unix.go rename to cli/vendor/github.com/docker/docker/cmd/docker/daemon_unix.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/docker.go b/cli/vendor/github.com/docker/docker/cmd/docker/docker.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/docker.go rename to cli/vendor/github.com/docker/docker/cmd/docker/docker.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/docker_test.go b/cli/vendor/github.com/docker/docker/cmd/docker/docker_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/docker_test.go rename to cli/vendor/github.com/docker/docker/cmd/docker/docker_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/docker/docker_windows.go b/cli/vendor/github.com/docker/docker/cmd/docker/docker_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/docker/docker_windows.go rename to cli/vendor/github.com/docker/docker/cmd/docker/docker_windows.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/README.md b/cli/vendor/github.com/docker/docker/cmd/dockerd/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/README.md rename to cli/vendor/github.com/docker/docker/cmd/dockerd/README.md diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config_common_unix.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config_common_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config_common_unix.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config_common_unix.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config_experimental.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config_experimental.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config_experimental.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config_experimental.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config_solaris.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config_solaris.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config_solaris.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config_unix.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config_unix.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config_unix.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config_unix_test.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config_unix_test.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/config_windows.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/config_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/config_windows.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/config_windows.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_freebsd.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_freebsd.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_linux.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_linux.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_linux.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_solaris.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_solaris.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_solaris.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_test.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_test.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix_test.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix_test.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_windows.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/daemon_windows.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/daemon_windows.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/docker.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/docker.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/docker.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/docker.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/docker_windows.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/docker_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/docker_windows.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/docker_windows.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override_test.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override_test.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/hack/malformed_host_override_test.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/metrics.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/metrics.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/metrics.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/metrics.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/service_unsupported.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/service_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/service_unsupported.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/service_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/cmd/dockerd/service_windows.go b/cli/vendor/github.com/docker/docker/cmd/dockerd/service_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/cmd/dockerd/service_windows.go rename to cli/vendor/github.com/docker/docker/cmd/dockerd/service_windows.go diff --git a/fn/vendor/github.com/docker/docker/container/archive.go b/cli/vendor/github.com/docker/docker/container/archive.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/archive.go rename to cli/vendor/github.com/docker/docker/container/archive.go diff --git a/fn/vendor/github.com/docker/docker/container/container.go b/cli/vendor/github.com/docker/docker/container/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/container.go rename to cli/vendor/github.com/docker/docker/container/container.go diff --git a/fn/vendor/github.com/docker/docker/container/container_linux.go b/cli/vendor/github.com/docker/docker/container/container_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/container_linux.go rename to cli/vendor/github.com/docker/docker/container/container_linux.go diff --git a/fn/vendor/github.com/docker/docker/container/container_notlinux.go b/cli/vendor/github.com/docker/docker/container/container_notlinux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/container_notlinux.go rename to cli/vendor/github.com/docker/docker/container/container_notlinux.go diff --git a/fn/vendor/github.com/docker/docker/container/container_unit_test.go b/cli/vendor/github.com/docker/docker/container/container_unit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/container_unit_test.go rename to cli/vendor/github.com/docker/docker/container/container_unit_test.go diff --git a/fn/vendor/github.com/docker/docker/container/container_unix.go b/cli/vendor/github.com/docker/docker/container/container_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/container_unix.go rename to cli/vendor/github.com/docker/docker/container/container_unix.go diff --git a/fn/vendor/github.com/docker/docker/container/container_windows.go b/cli/vendor/github.com/docker/docker/container/container_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/container_windows.go rename to cli/vendor/github.com/docker/docker/container/container_windows.go diff --git a/fn/vendor/github.com/docker/docker/container/env.go b/cli/vendor/github.com/docker/docker/container/env.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/env.go rename to cli/vendor/github.com/docker/docker/container/env.go diff --git a/fn/vendor/github.com/docker/docker/container/env_test.go b/cli/vendor/github.com/docker/docker/container/env_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/env_test.go rename to cli/vendor/github.com/docker/docker/container/env_test.go diff --git a/fn/vendor/github.com/docker/docker/container/health.go b/cli/vendor/github.com/docker/docker/container/health.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/health.go rename to cli/vendor/github.com/docker/docker/container/health.go diff --git a/fn/vendor/github.com/docker/docker/container/history.go b/cli/vendor/github.com/docker/docker/container/history.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/history.go rename to cli/vendor/github.com/docker/docker/container/history.go diff --git a/fn/vendor/github.com/docker/docker/container/memory_store.go b/cli/vendor/github.com/docker/docker/container/memory_store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/memory_store.go rename to cli/vendor/github.com/docker/docker/container/memory_store.go diff --git a/fn/vendor/github.com/docker/docker/container/memory_store_test.go b/cli/vendor/github.com/docker/docker/container/memory_store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/memory_store_test.go rename to cli/vendor/github.com/docker/docker/container/memory_store_test.go diff --git a/fn/vendor/github.com/docker/docker/container/monitor.go b/cli/vendor/github.com/docker/docker/container/monitor.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/monitor.go rename to cli/vendor/github.com/docker/docker/container/monitor.go diff --git a/fn/vendor/github.com/docker/docker/container/mounts_unix.go b/cli/vendor/github.com/docker/docker/container/mounts_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/mounts_unix.go rename to cli/vendor/github.com/docker/docker/container/mounts_unix.go diff --git a/fn/vendor/github.com/docker/docker/container/mounts_windows.go b/cli/vendor/github.com/docker/docker/container/mounts_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/mounts_windows.go rename to cli/vendor/github.com/docker/docker/container/mounts_windows.go diff --git a/fn/vendor/github.com/docker/docker/container/state.go b/cli/vendor/github.com/docker/docker/container/state.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/state.go rename to cli/vendor/github.com/docker/docker/container/state.go diff --git a/fn/vendor/github.com/docker/docker/container/state_solaris.go b/cli/vendor/github.com/docker/docker/container/state_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/state_solaris.go rename to cli/vendor/github.com/docker/docker/container/state_solaris.go diff --git a/fn/vendor/github.com/docker/docker/container/state_test.go b/cli/vendor/github.com/docker/docker/container/state_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/state_test.go rename to cli/vendor/github.com/docker/docker/container/state_test.go diff --git a/fn/vendor/github.com/docker/docker/container/state_unix.go b/cli/vendor/github.com/docker/docker/container/state_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/state_unix.go rename to cli/vendor/github.com/docker/docker/container/state_unix.go diff --git a/fn/vendor/github.com/docker/docker/container/state_windows.go b/cli/vendor/github.com/docker/docker/container/state_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/state_windows.go rename to cli/vendor/github.com/docker/docker/container/state_windows.go diff --git a/fn/vendor/github.com/docker/docker/container/store.go b/cli/vendor/github.com/docker/docker/container/store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/store.go rename to cli/vendor/github.com/docker/docker/container/store.go diff --git a/fn/vendor/github.com/docker/docker/container/stream/attach.go b/cli/vendor/github.com/docker/docker/container/stream/attach.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/stream/attach.go rename to cli/vendor/github.com/docker/docker/container/stream/attach.go diff --git a/fn/vendor/github.com/docker/docker/container/stream/streams.go b/cli/vendor/github.com/docker/docker/container/stream/streams.go similarity index 100% rename from fn/vendor/github.com/docker/docker/container/stream/streams.go rename to cli/vendor/github.com/docker/docker/container/stream/streams.go diff --git a/fn/vendor/github.com/docker/docker/contrib/README.md b/cli/vendor/github.com/docker/docker/contrib/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/README.md rename to cli/vendor/github.com/docker/docker/contrib/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/REVIEWERS b/cli/vendor/github.com/docker/docker/contrib/REVIEWERS similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/REVIEWERS rename to cli/vendor/github.com/docker/docker/contrib/REVIEWERS diff --git a/fn/vendor/github.com/docker/docker/contrib/apparmor/main.go b/cli/vendor/github.com/docker/docker/contrib/apparmor/main.go similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/apparmor/main.go rename to cli/vendor/github.com/docker/docker/contrib/apparmor/main.go diff --git a/fn/vendor/github.com/docker/docker/contrib/apparmor/template.go b/cli/vendor/github.com/docker/docker/contrib/apparmor/template.go similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/apparmor/template.go rename to cli/vendor/github.com/docker/docker/contrib/apparmor/template.go diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-jessie/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-jessie/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-jessie/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-stretch/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-stretch/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-stretch/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/debian-stretch/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/README.md b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/README.md rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-jessie/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-jessie/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-jessie/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-stretch/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-stretch/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-stretch/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-stretch/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-wheezy/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-wheezy/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-wheezy/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/debian-wheezy/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/debian-jessie/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/debian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/debian-jessie/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/debian-jessie/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/README.md b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/README.md rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/centos-7/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/centos-7/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/centos-7/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/centos-7/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-24/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-24/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-24/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-24/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-25/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-25/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-25/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-25/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/photon-1.0/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/photon-1.0/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/photon-1.0/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/amd64/photon-1.0/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/centos-7/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/centos-7/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/centos-7/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/centos-7/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/armhf/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/build.sh b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/build.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/build.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/build.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/generate.sh b/cli/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/generate.sh rename to cli/vendor/github.com/docker/docker/contrib/builder/rpm/ppc64le/generate.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/check-config.sh b/cli/vendor/github.com/docker/docker/contrib/check-config.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/check-config.sh rename to cli/vendor/github.com/docker/docker/contrib/check-config.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/completion/REVIEWERS b/cli/vendor/github.com/docker/docker/contrib/completion/REVIEWERS similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/completion/REVIEWERS rename to cli/vendor/github.com/docker/docker/contrib/completion/REVIEWERS diff --git a/fn/vendor/github.com/docker/docker/contrib/completion/bash/docker b/cli/vendor/github.com/docker/docker/contrib/completion/bash/docker similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/completion/bash/docker rename to cli/vendor/github.com/docker/docker/contrib/completion/bash/docker diff --git a/fn/vendor/github.com/docker/docker/contrib/completion/fish/docker.fish b/cli/vendor/github.com/docker/docker/contrib/completion/fish/docker.fish similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/completion/fish/docker.fish rename to cli/vendor/github.com/docker/docker/contrib/completion/fish/docker.fish diff --git a/fn/vendor/github.com/docker/docker/contrib/completion/powershell/readme.txt b/cli/vendor/github.com/docker/docker/contrib/completion/powershell/readme.txt similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/completion/powershell/readme.txt rename to cli/vendor/github.com/docker/docker/contrib/completion/powershell/readme.txt diff --git a/fn/vendor/github.com/docker/docker/contrib/completion/zsh/REVIEWERS b/cli/vendor/github.com/docker/docker/contrib/completion/zsh/REVIEWERS similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/completion/zsh/REVIEWERS rename to cli/vendor/github.com/docker/docker/contrib/completion/zsh/REVIEWERS diff --git a/fn/vendor/github.com/docker/docker/contrib/completion/zsh/_docker b/cli/vendor/github.com/docker/docker/contrib/completion/zsh/_docker similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/completion/zsh/_docker rename to cli/vendor/github.com/docker/docker/contrib/completion/zsh/_docker diff --git a/fn/vendor/github.com/docker/docker/contrib/desktop-integration/README.md b/cli/vendor/github.com/docker/docker/contrib/desktop-integration/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/desktop-integration/README.md rename to cli/vendor/github.com/docker/docker/contrib/desktop-integration/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/desktop-integration/chromium/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/desktop-integration/chromium/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/desktop-integration/chromium/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/desktop-integration/chromium/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/desktop-integration/gparted/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/desktop-integration/gparted/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/desktop-integration/gparted/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/desktop-integration/gparted/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/docker-device-tool/README.md b/cli/vendor/github.com/docker/docker/contrib/docker-device-tool/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/docker-device-tool/README.md rename to cli/vendor/github.com/docker/docker/contrib/docker-device-tool/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool.go b/cli/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool.go similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool.go rename to cli/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool.go diff --git a/fn/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool_windows.go b/cli/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool_windows.go rename to cli/vendor/github.com/docker/docker/contrib/docker-device-tool/device_tool_windows.go diff --git a/fn/vendor/github.com/docker/docker/contrib/docker-machine-install-bundle.sh b/cli/vendor/github.com/docker/docker/contrib/docker-machine-install-bundle.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/docker-machine-install-bundle.sh rename to cli/vendor/github.com/docker/docker/contrib/docker-machine-install-bundle.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/dockerize-disk.sh b/cli/vendor/github.com/docker/docker/contrib/dockerize-disk.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/dockerize-disk.sh rename to cli/vendor/github.com/docker/docker/contrib/dockerize-disk.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/download-frozen-image-v1.sh b/cli/vendor/github.com/docker/docker/contrib/download-frozen-image-v1.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/download-frozen-image-v1.sh rename to cli/vendor/github.com/docker/docker/contrib/download-frozen-image-v1.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/download-frozen-image-v2.sh b/cli/vendor/github.com/docker/docker/contrib/download-frozen-image-v2.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/download-frozen-image-v2.sh rename to cli/vendor/github.com/docker/docker/contrib/download-frozen-image-v2.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/editorconfig b/cli/vendor/github.com/docker/docker/contrib/editorconfig similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/editorconfig rename to cli/vendor/github.com/docker/docker/contrib/editorconfig diff --git a/fn/vendor/github.com/docker/docker/contrib/gitdm/aliases b/cli/vendor/github.com/docker/docker/contrib/gitdm/aliases similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/gitdm/aliases rename to cli/vendor/github.com/docker/docker/contrib/gitdm/aliases diff --git a/fn/vendor/github.com/docker/docker/contrib/gitdm/domain-map b/cli/vendor/github.com/docker/docker/contrib/gitdm/domain-map similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/gitdm/domain-map rename to cli/vendor/github.com/docker/docker/contrib/gitdm/domain-map diff --git a/fn/vendor/github.com/docker/docker/contrib/gitdm/generate_aliases.sh b/cli/vendor/github.com/docker/docker/contrib/gitdm/generate_aliases.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/gitdm/generate_aliases.sh rename to cli/vendor/github.com/docker/docker/contrib/gitdm/generate_aliases.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/gitdm/gitdm.config b/cli/vendor/github.com/docker/docker/contrib/gitdm/gitdm.config similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/gitdm/gitdm.config rename to cli/vendor/github.com/docker/docker/contrib/gitdm/gitdm.config diff --git a/fn/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile.solaris b/cli/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile.solaris similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile.solaris rename to cli/vendor/github.com/docker/docker/contrib/httpserver/Dockerfile.solaris diff --git a/fn/vendor/github.com/docker/docker/contrib/httpserver/server.go b/cli/vendor/github.com/docker/docker/contrib/httpserver/server.go similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/httpserver/server.go rename to cli/vendor/github.com/docker/docker/contrib/httpserver/server.go diff --git a/fn/vendor/github.com/docker/docker/contrib/init/openrc/docker.confd b/cli/vendor/github.com/docker/docker/contrib/init/openrc/docker.confd similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/openrc/docker.confd rename to cli/vendor/github.com/docker/docker/contrib/init/openrc/docker.confd diff --git a/fn/vendor/github.com/docker/docker/contrib/init/openrc/docker.initd b/cli/vendor/github.com/docker/docker/contrib/init/openrc/docker.initd similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/openrc/docker.initd rename to cli/vendor/github.com/docker/docker/contrib/init/openrc/docker.initd diff --git a/fn/vendor/github.com/docker/docker/contrib/init/systemd/REVIEWERS b/cli/vendor/github.com/docker/docker/contrib/init/systemd/REVIEWERS similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/systemd/REVIEWERS rename to cli/vendor/github.com/docker/docker/contrib/init/systemd/REVIEWERS diff --git a/fn/vendor/github.com/docker/docker/contrib/init/systemd/docker.service b/cli/vendor/github.com/docker/docker/contrib/init/systemd/docker.service similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/systemd/docker.service rename to cli/vendor/github.com/docker/docker/contrib/init/systemd/docker.service diff --git a/fn/vendor/github.com/docker/docker/contrib/init/systemd/docker.service.rpm b/cli/vendor/github.com/docker/docker/contrib/init/systemd/docker.service.rpm similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/systemd/docker.service.rpm rename to cli/vendor/github.com/docker/docker/contrib/init/systemd/docker.service.rpm diff --git a/fn/vendor/github.com/docker/docker/contrib/init/systemd/docker.socket b/cli/vendor/github.com/docker/docker/contrib/init/systemd/docker.socket similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/systemd/docker.socket rename to cli/vendor/github.com/docker/docker/contrib/init/systemd/docker.socket diff --git a/fn/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker b/cli/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker rename to cli/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker diff --git a/fn/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker.default b/cli/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker.default similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker.default rename to cli/vendor/github.com/docker/docker/contrib/init/sysvinit-debian/docker.default diff --git a/fn/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker b/cli/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker rename to cli/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker diff --git a/fn/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker.sysconfig b/cli/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker.sysconfig similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker.sysconfig rename to cli/vendor/github.com/docker/docker/contrib/init/sysvinit-redhat/docker.sysconfig diff --git a/fn/vendor/github.com/docker/docker/contrib/init/upstart/REVIEWERS b/cli/vendor/github.com/docker/docker/contrib/init/upstart/REVIEWERS similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/upstart/REVIEWERS rename to cli/vendor/github.com/docker/docker/contrib/init/upstart/REVIEWERS diff --git a/fn/vendor/github.com/docker/docker/contrib/init/upstart/docker.conf b/cli/vendor/github.com/docker/docker/contrib/init/upstart/docker.conf similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/init/upstart/docker.conf rename to cli/vendor/github.com/docker/docker/contrib/init/upstart/docker.conf diff --git a/fn/vendor/github.com/docker/docker/contrib/mac-install-bundle.sh b/cli/vendor/github.com/docker/docker/contrib/mac-install-bundle.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mac-install-bundle.sh rename to cli/vendor/github.com/docker/docker/contrib/mac-install-bundle.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-alpine.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-alpine.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-alpine.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-alpine.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-arch-pacman.conf b/cli/vendor/github.com/docker/docker/contrib/mkimage-arch-pacman.conf similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-arch-pacman.conf rename to cli/vendor/github.com/docker/docker/contrib/mkimage-arch-pacman.conf diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-arch.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-arch.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-arch.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-arch.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-archarm-pacman.conf b/cli/vendor/github.com/docker/docker/contrib/mkimage-archarm-pacman.conf similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-archarm-pacman.conf rename to cli/vendor/github.com/docker/docker/contrib/mkimage-archarm-pacman.conf diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-busybox.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-busybox.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-busybox.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-busybox.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-crux.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-crux.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-crux.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-crux.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-debootstrap.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-debootstrap.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-debootstrap.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-debootstrap.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-pld.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-pld.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-pld.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-pld.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-rinse.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-rinse.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-rinse.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-rinse.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage-yum.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage-yum.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage-yum.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage-yum.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage.sh b/cli/vendor/github.com/docker/docker/contrib/mkimage.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage.sh rename to cli/vendor/github.com/docker/docker/contrib/mkimage.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage/.febootstrap-minimize b/cli/vendor/github.com/docker/docker/contrib/mkimage/.febootstrap-minimize similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage/.febootstrap-minimize rename to cli/vendor/github.com/docker/docker/contrib/mkimage/.febootstrap-minimize diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage/busybox-static b/cli/vendor/github.com/docker/docker/contrib/mkimage/busybox-static similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage/busybox-static rename to cli/vendor/github.com/docker/docker/contrib/mkimage/busybox-static diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage/debootstrap b/cli/vendor/github.com/docker/docker/contrib/mkimage/debootstrap similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage/debootstrap rename to cli/vendor/github.com/docker/docker/contrib/mkimage/debootstrap diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage/mageia-urpmi b/cli/vendor/github.com/docker/docker/contrib/mkimage/mageia-urpmi similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage/mageia-urpmi rename to cli/vendor/github.com/docker/docker/contrib/mkimage/mageia-urpmi diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage/rinse b/cli/vendor/github.com/docker/docker/contrib/mkimage/rinse similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage/rinse rename to cli/vendor/github.com/docker/docker/contrib/mkimage/rinse diff --git a/fn/vendor/github.com/docker/docker/contrib/mkimage/solaris b/cli/vendor/github.com/docker/docker/contrib/mkimage/solaris similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/mkimage/solaris rename to cli/vendor/github.com/docker/docker/contrib/mkimage/solaris diff --git a/fn/vendor/github.com/docker/docker/contrib/nnp-test/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/nnp-test/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/nnp-test/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/nnp-test/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/nnp-test/nnp-test.c b/cli/vendor/github.com/docker/docker/contrib/nnp-test/nnp-test.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/nnp-test/nnp-test.c rename to cli/vendor/github.com/docker/docker/contrib/nnp-test/nnp-test.c diff --git a/fn/vendor/github.com/docker/docker/contrib/nuke-graph-directory.sh b/cli/vendor/github.com/docker/docker/contrib/nuke-graph-directory.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/nuke-graph-directory.sh rename to cli/vendor/github.com/docker/docker/contrib/nuke-graph-directory.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/project-stats.sh b/cli/vendor/github.com/docker/docker/contrib/project-stats.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/project-stats.sh rename to cli/vendor/github.com/docker/docker/contrib/project-stats.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/report-issue.sh b/cli/vendor/github.com/docker/docker/contrib/report-issue.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/report-issue.sh rename to cli/vendor/github.com/docker/docker/contrib/report-issue.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/reprepro/suites.sh b/cli/vendor/github.com/docker/docker/contrib/reprepro/suites.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/reprepro/suites.sh rename to cli/vendor/github.com/docker/docker/contrib/reprepro/suites.sh diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE b/cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE rename to cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/Makefile b/cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/Makefile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/Makefile rename to cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/Makefile diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/README.md b/cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/README.md rename to cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc b/cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc rename to cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.if b/cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.if similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.if rename to cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.if diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.te b/cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.te similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.te rename to cli/vendor/github.com/docker/docker/contrib/selinux-fedora-24/docker-engine-selinux/docker.te diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz b/cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz rename to cli/vendor/github.com/docker/docker/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/LICENSE b/cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/LICENSE similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/LICENSE rename to cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/LICENSE diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/Makefile b/cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/Makefile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/Makefile rename to cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/Makefile diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.fc b/cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.fc similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.fc rename to cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.fc diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.if b/cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.if similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.if rename to cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.if diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.te b/cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.te similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.te rename to cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker.te diff --git a/fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz b/cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz rename to cli/vendor/github.com/docker/docker/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/nano/Dockerfile.nanorc b/cli/vendor/github.com/docker/docker/contrib/syntax/nano/Dockerfile.nanorc similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/nano/Dockerfile.nanorc rename to cli/vendor/github.com/docker/docker/contrib/syntax/nano/Dockerfile.nanorc diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/nano/README.md b/cli/vendor/github.com/docker/docker/contrib/syntax/nano/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/nano/README.md rename to cli/vendor/github.com/docker/docker/contrib/syntax/nano/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences b/cli/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences rename to cli/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage b/cli/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage rename to cli/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/info.plist b/cli/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/info.plist similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/info.plist rename to cli/vendor/github.com/docker/docker/contrib/syntax/textmate/Docker.tmbundle/info.plist diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/textmate/README.md b/cli/vendor/github.com/docker/docker/contrib/syntax/textmate/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/textmate/README.md rename to cli/vendor/github.com/docker/docker/contrib/syntax/textmate/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/textmate/REVIEWERS b/cli/vendor/github.com/docker/docker/contrib/syntax/textmate/REVIEWERS similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/textmate/REVIEWERS rename to cli/vendor/github.com/docker/docker/contrib/syntax/textmate/REVIEWERS diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE b/cli/vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE rename to cli/vendor/github.com/docker/docker/contrib/syntax/vim/LICENSE diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/vim/README.md b/cli/vendor/github.com/docker/docker/contrib/syntax/vim/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/vim/README.md rename to cli/vendor/github.com/docker/docker/contrib/syntax/vim/README.md diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/vim/doc/dockerfile.txt b/cli/vendor/github.com/docker/docker/contrib/syntax/vim/doc/dockerfile.txt similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/vim/doc/dockerfile.txt rename to cli/vendor/github.com/docker/docker/contrib/syntax/vim/doc/dockerfile.txt diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/vim/ftdetect/dockerfile.vim b/cli/vendor/github.com/docker/docker/contrib/syntax/vim/ftdetect/dockerfile.vim similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/vim/ftdetect/dockerfile.vim rename to cli/vendor/github.com/docker/docker/contrib/syntax/vim/ftdetect/dockerfile.vim diff --git a/fn/vendor/github.com/docker/docker/contrib/syntax/vim/syntax/dockerfile.vim b/cli/vendor/github.com/docker/docker/contrib/syntax/vim/syntax/dockerfile.vim similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syntax/vim/syntax/dockerfile.vim rename to cli/vendor/github.com/docker/docker/contrib/syntax/vim/syntax/dockerfile.vim diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/Dockerfile b/cli/vendor/github.com/docker/docker/contrib/syscall-test/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/Dockerfile rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/acct.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/acct.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/acct.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/acct.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/appletalk.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/appletalk.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/appletalk.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/appletalk.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/exit32.s b/cli/vendor/github.com/docker/docker/contrib/syscall-test/exit32.s similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/exit32.s rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/exit32.s diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/ns.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/ns.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/ns.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/ns.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/raw.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/raw.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/raw.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/raw.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/setgid.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/setgid.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/setgid.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/setgid.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/setuid.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/setuid.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/setuid.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/setuid.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/socket.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/socket.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/socket.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/socket.c diff --git a/fn/vendor/github.com/docker/docker/contrib/syscall-test/userns.c b/cli/vendor/github.com/docker/docker/contrib/syscall-test/userns.c similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/syscall-test/userns.c rename to cli/vendor/github.com/docker/docker/contrib/syscall-test/userns.c diff --git a/fn/vendor/github.com/docker/docker/contrib/udev/80-docker.rules b/cli/vendor/github.com/docker/docker/contrib/udev/80-docker.rules similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/udev/80-docker.rules rename to cli/vendor/github.com/docker/docker/contrib/udev/80-docker.rules diff --git a/fn/vendor/github.com/docker/docker/contrib/vagrant-docker/README.md b/cli/vendor/github.com/docker/docker/contrib/vagrant-docker/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/contrib/vagrant-docker/README.md rename to cli/vendor/github.com/docker/docker/contrib/vagrant-docker/README.md diff --git a/fn/vendor/github.com/docker/docker/daemon/apparmor_default.go b/cli/vendor/github.com/docker/docker/daemon/apparmor_default.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/apparmor_default.go rename to cli/vendor/github.com/docker/docker/daemon/apparmor_default.go diff --git a/fn/vendor/github.com/docker/docker/daemon/apparmor_default_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/apparmor_default_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/apparmor_default_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/apparmor_default_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/archive.go b/cli/vendor/github.com/docker/docker/daemon/archive.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/archive.go rename to cli/vendor/github.com/docker/docker/daemon/archive.go diff --git a/fn/vendor/github.com/docker/docker/daemon/archive_unix.go b/cli/vendor/github.com/docker/docker/daemon/archive_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/archive_unix.go rename to cli/vendor/github.com/docker/docker/daemon/archive_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/archive_windows.go b/cli/vendor/github.com/docker/docker/daemon/archive_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/archive_windows.go rename to cli/vendor/github.com/docker/docker/daemon/archive_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/attach.go b/cli/vendor/github.com/docker/docker/daemon/attach.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/attach.go rename to cli/vendor/github.com/docker/docker/daemon/attach.go diff --git a/fn/vendor/github.com/docker/docker/daemon/auth.go b/cli/vendor/github.com/docker/docker/daemon/auth.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/auth.go rename to cli/vendor/github.com/docker/docker/daemon/auth.go diff --git a/fn/vendor/github.com/docker/docker/daemon/bindmount_solaris.go b/cli/vendor/github.com/docker/docker/daemon/bindmount_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/bindmount_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/bindmount_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/bindmount_unix.go b/cli/vendor/github.com/docker/docker/daemon/bindmount_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/bindmount_unix.go rename to cli/vendor/github.com/docker/docker/daemon/bindmount_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cache.go b/cli/vendor/github.com/docker/docker/daemon/cache.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cache.go rename to cli/vendor/github.com/docker/docker/daemon/cache.go diff --git a/fn/vendor/github.com/docker/docker/daemon/caps/utils_unix.go b/cli/vendor/github.com/docker/docker/daemon/caps/utils_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/caps/utils_unix.go rename to cli/vendor/github.com/docker/docker/daemon/caps/utils_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/changes.go b/cli/vendor/github.com/docker/docker/daemon/changes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/changes.go rename to cli/vendor/github.com/docker/docker/daemon/changes.go diff --git a/fn/vendor/github.com/docker/docker/daemon/checkpoint.go b/cli/vendor/github.com/docker/docker/daemon/checkpoint.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/checkpoint.go rename to cli/vendor/github.com/docker/docker/daemon/checkpoint.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster.go b/cli/vendor/github.com/docker/docker/daemon/cluster.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster.go rename to cli/vendor/github.com/docker/docker/daemon/cluster.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/cluster.go b/cli/vendor/github.com/docker/docker/daemon/cluster/cluster.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/cluster.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/cluster.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/container.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/container.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/container.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/network.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/network.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/network.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/node.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/node.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/node.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/node.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/secret.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/secret.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/secret.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/secret.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/service.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/service.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/service.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/swarm.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/swarm.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/swarm.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/swarm.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/convert/task.go b/cli/vendor/github.com/docker/docker/daemon/cluster/convert/task.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/convert/task.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/convert/task.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/backend.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/backend.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/backend.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/backend.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/adapter.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/adapter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/adapter.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/adapter.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/attachment.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/attachment.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/attachment.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/attachment.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/container.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/container.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/container.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/controller.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/controller.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/controller.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/controller.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/errors.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/errors.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/errors.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/executor.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/executor.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/executor.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/executor.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/health_test.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/health_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/health_test.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/health_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_test.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_test.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_unix_test.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_unix_test.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_windows_test.go b/cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_windows_test.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/executor/container/validate_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/filters.go b/cli/vendor/github.com/docker/docker/daemon/cluster/filters.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/filters.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/filters.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/filters_test.go b/cli/vendor/github.com/docker/docker/daemon/cluster/filters_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/filters_test.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/filters_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/helpers.go b/cli/vendor/github.com/docker/docker/daemon/cluster/helpers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/helpers.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/helpers.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr.go b/cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr_linux.go b/cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr_linux.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr_others.go b/cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr_others.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr_others.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr_others.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr_solaris.go b/cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/listen_addr_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/listen_addr_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/networks.go b/cli/vendor/github.com/docker/docker/daemon/cluster/networks.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/networks.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/networks.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/noderunner.go b/cli/vendor/github.com/docker/docker/daemon/cluster/noderunner.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/noderunner.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/noderunner.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/nodes.go b/cli/vendor/github.com/docker/docker/daemon/cluster/nodes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/nodes.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/nodes.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/provider/network.go b/cli/vendor/github.com/docker/docker/daemon/cluster/provider/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/provider/network.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/provider/network.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/secrets.go b/cli/vendor/github.com/docker/docker/daemon/cluster/secrets.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/secrets.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/secrets.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/services.go b/cli/vendor/github.com/docker/docker/daemon/cluster/services.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/services.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/services.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/swarm.go b/cli/vendor/github.com/docker/docker/daemon/cluster/swarm.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/swarm.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/swarm.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/tasks.go b/cli/vendor/github.com/docker/docker/daemon/cluster/tasks.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/tasks.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/tasks.go diff --git a/fn/vendor/github.com/docker/docker/daemon/cluster/utils.go b/cli/vendor/github.com/docker/docker/daemon/cluster/utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/cluster/utils.go rename to cli/vendor/github.com/docker/docker/daemon/cluster/utils.go diff --git a/fn/vendor/github.com/docker/docker/daemon/commit.go b/cli/vendor/github.com/docker/docker/daemon/commit.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/commit.go rename to cli/vendor/github.com/docker/docker/daemon/commit.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config.go b/cli/vendor/github.com/docker/docker/daemon/config/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config.go rename to cli/vendor/github.com/docker/docker/daemon/config/config.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_common_unix.go b/cli/vendor/github.com/docker/docker/daemon/config/config_common_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_common_unix.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_common_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_common_unix_test.go b/cli/vendor/github.com/docker/docker/daemon/config/config_common_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_common_unix_test.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_common_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_solaris.go b/cli/vendor/github.com/docker/docker/daemon/config/config_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_test.go b/cli/vendor/github.com/docker/docker/daemon/config/config_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_test.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_unix.go b/cli/vendor/github.com/docker/docker/daemon/config/config_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_unix.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_unix_test.go b/cli/vendor/github.com/docker/docker/daemon/config/config_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_unix_test.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_windows.go b/cli/vendor/github.com/docker/docker/daemon/config/config_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_windows.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/config/config_windows_test.go b/cli/vendor/github.com/docker/docker/daemon/config/config_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/config/config_windows_test.go rename to cli/vendor/github.com/docker/docker/daemon/config/config_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container.go b/cli/vendor/github.com/docker/docker/daemon/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container.go rename to cli/vendor/github.com/docker/docker/daemon/container.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container_linux.go b/cli/vendor/github.com/docker/docker/daemon/container_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container_linux.go rename to cli/vendor/github.com/docker/docker/daemon/container_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container_operations.go b/cli/vendor/github.com/docker/docker/daemon/container_operations.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container_operations.go rename to cli/vendor/github.com/docker/docker/daemon/container_operations.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container_operations_solaris.go b/cli/vendor/github.com/docker/docker/daemon/container_operations_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container_operations_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/container_operations_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container_operations_unix.go b/cli/vendor/github.com/docker/docker/daemon/container_operations_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container_operations_unix.go rename to cli/vendor/github.com/docker/docker/daemon/container_operations_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container_operations_windows.go b/cli/vendor/github.com/docker/docker/daemon/container_operations_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container_operations_windows.go rename to cli/vendor/github.com/docker/docker/daemon/container_operations_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/container_windows.go b/cli/vendor/github.com/docker/docker/daemon/container_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/container_windows.go rename to cli/vendor/github.com/docker/docker/daemon/container_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/create.go b/cli/vendor/github.com/docker/docker/daemon/create.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/create.go rename to cli/vendor/github.com/docker/docker/daemon/create.go diff --git a/fn/vendor/github.com/docker/docker/daemon/create_unix.go b/cli/vendor/github.com/docker/docker/daemon/create_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/create_unix.go rename to cli/vendor/github.com/docker/docker/daemon/create_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/create_windows.go b/cli/vendor/github.com/docker/docker/daemon/create_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/create_windows.go rename to cli/vendor/github.com/docker/docker/daemon/create_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon.go b/cli/vendor/github.com/docker/docker/daemon/daemon.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon.go rename to cli/vendor/github.com/docker/docker/daemon/daemon.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_experimental.go b/cli/vendor/github.com/docker/docker/daemon/daemon_experimental.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_experimental.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_experimental.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_linux.go b/cli/vendor/github.com/docker/docker/daemon/daemon_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_linux.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_linux_test.go b/cli/vendor/github.com/docker/docker/daemon/daemon_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_linux_test.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_solaris.go b/cli/vendor/github.com/docker/docker/daemon/daemon_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_test.go b/cli/vendor/github.com/docker/docker/daemon/daemon_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_test.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_unix.go b/cli/vendor/github.com/docker/docker/daemon/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_unix.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_unix_test.go b/cli/vendor/github.com/docker/docker/daemon/daemon_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_unix_test.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/daemon_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/daemon_windows.go b/cli/vendor/github.com/docker/docker/daemon/daemon_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/daemon_windows.go rename to cli/vendor/github.com/docker/docker/daemon/daemon_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/debugtrap.go b/cli/vendor/github.com/docker/docker/daemon/debugtrap.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/debugtrap.go rename to cli/vendor/github.com/docker/docker/daemon/debugtrap.go diff --git a/fn/vendor/github.com/docker/docker/daemon/debugtrap_unix.go b/cli/vendor/github.com/docker/docker/daemon/debugtrap_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/debugtrap_unix.go rename to cli/vendor/github.com/docker/docker/daemon/debugtrap_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/debugtrap_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/debugtrap_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/debugtrap_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/debugtrap_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/debugtrap_windows.go b/cli/vendor/github.com/docker/docker/daemon/debugtrap_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/debugtrap_windows.go rename to cli/vendor/github.com/docker/docker/daemon/debugtrap_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/delete.go b/cli/vendor/github.com/docker/docker/daemon/delete.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/delete.go rename to cli/vendor/github.com/docker/docker/daemon/delete.go diff --git a/fn/vendor/github.com/docker/docker/daemon/delete_test.go b/cli/vendor/github.com/docker/docker/daemon/delete_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/delete_test.go rename to cli/vendor/github.com/docker/docker/daemon/delete_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/discovery/discovery.go b/cli/vendor/github.com/docker/docker/daemon/discovery/discovery.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/discovery/discovery.go rename to cli/vendor/github.com/docker/docker/daemon/discovery/discovery.go diff --git a/fn/vendor/github.com/docker/docker/daemon/discovery/discovery_test.go b/cli/vendor/github.com/docker/docker/daemon/discovery/discovery_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/discovery/discovery_test.go rename to cli/vendor/github.com/docker/docker/daemon/discovery/discovery_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/disk_usage.go b/cli/vendor/github.com/docker/docker/daemon/disk_usage.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/disk_usage.go rename to cli/vendor/github.com/docker/docker/daemon/disk_usage.go diff --git a/fn/vendor/github.com/docker/docker/daemon/errors.go b/cli/vendor/github.com/docker/docker/daemon/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/errors.go rename to cli/vendor/github.com/docker/docker/daemon/errors.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events.go b/cli/vendor/github.com/docker/docker/daemon/events.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events.go rename to cli/vendor/github.com/docker/docker/daemon/events.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events/events.go b/cli/vendor/github.com/docker/docker/daemon/events/events.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events/events.go rename to cli/vendor/github.com/docker/docker/daemon/events/events.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events/events_test.go b/cli/vendor/github.com/docker/docker/daemon/events/events_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events/events_test.go rename to cli/vendor/github.com/docker/docker/daemon/events/events_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events/filter.go b/cli/vendor/github.com/docker/docker/daemon/events/filter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events/filter.go rename to cli/vendor/github.com/docker/docker/daemon/events/filter.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events/metrics.go b/cli/vendor/github.com/docker/docker/daemon/events/metrics.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events/metrics.go rename to cli/vendor/github.com/docker/docker/daemon/events/metrics.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events/testutils/testutils.go b/cli/vendor/github.com/docker/docker/daemon/events/testutils/testutils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events/testutils/testutils.go rename to cli/vendor/github.com/docker/docker/daemon/events/testutils/testutils.go diff --git a/fn/vendor/github.com/docker/docker/daemon/events_test.go b/cli/vendor/github.com/docker/docker/daemon/events_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/events_test.go rename to cli/vendor/github.com/docker/docker/daemon/events_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/exec.go b/cli/vendor/github.com/docker/docker/daemon/exec.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/exec.go rename to cli/vendor/github.com/docker/docker/daemon/exec.go diff --git a/fn/vendor/github.com/docker/docker/daemon/exec/exec.go b/cli/vendor/github.com/docker/docker/daemon/exec/exec.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/exec/exec.go rename to cli/vendor/github.com/docker/docker/daemon/exec/exec.go diff --git a/fn/vendor/github.com/docker/docker/daemon/exec_linux.go b/cli/vendor/github.com/docker/docker/daemon/exec_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/exec_linux.go rename to cli/vendor/github.com/docker/docker/daemon/exec_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/exec_solaris.go b/cli/vendor/github.com/docker/docker/daemon/exec_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/exec_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/exec_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/exec_windows.go b/cli/vendor/github.com/docker/docker/daemon/exec_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/exec_windows.go rename to cli/vendor/github.com/docker/docker/daemon/exec_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/export.go b/cli/vendor/github.com/docker/docker/daemon/export.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/export.go rename to cli/vendor/github.com/docker/docker/daemon/export.go diff --git a/fn/vendor/github.com/docker/docker/daemon/getsize_unix.go b/cli/vendor/github.com/docker/docker/daemon/getsize_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/getsize_unix.go rename to cli/vendor/github.com/docker/docker/daemon/getsize_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/aufs_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/dirs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/dirs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/dirs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/dirs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_linux.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_linux.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/aufs/mount_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/btrfs_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/dummy_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_none.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_none.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_none.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_none.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/btrfs/version_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/counter.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/counter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/counter.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/counter.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/README.md b/cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/README.md rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/README.md diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/deviceset.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/deviceset.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/deviceset.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/deviceset.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_doc.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_doc.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_doc.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_doc.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/devmapper_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/driver.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/driver.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/driver.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/driver.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/mount.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/mount.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/devmapper/mount.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/driver.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/driver.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/driver.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/driver.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_freebsd.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_freebsd.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_linux.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_linux.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_solaris.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_windows.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/driver_windows.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/driver_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/fsdiff.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/fsdiff.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/fsdiff.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/fsdiff.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphbench_unix.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphbench_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphbench_unix.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphbench_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_unix.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_unix.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_windows.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_windows.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/graphtest_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil_unix.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil_unix.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/graphtest/testutil_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/copy.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/copy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/copy.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/copy.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay/overlay_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/check.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/check.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/check.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/check.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/mount.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/mount.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/mount.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/overlay_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/randomid.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/randomid.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/randomid.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlay2/randomid.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/overlayutils/overlayutils.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/overlayutils/overlayutils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/overlayutils/overlayutils.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/overlayutils/overlayutils.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/plugin.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/plugin.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/plugin.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/proxy.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/proxy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/proxy.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/proxy.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/quota/projectquota.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/quota/projectquota.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/quota/projectquota.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/quota/projectquota.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_aufs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_aufs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_aufs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_aufs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_btrfs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_btrfs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_btrfs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_btrfs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_devicemapper.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_devicemapper.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_devicemapper.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_devicemapper.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_overlay.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_overlay.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_overlay.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_overlay.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_vfs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_vfs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_vfs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_vfs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_windows.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_windows.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_zfs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_zfs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/register/register_zfs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/register/register_zfs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/vfs/driver.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/vfs/driver.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/vfs/driver.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/vfs/driver.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/vfs/vfs_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/vfs/vfs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/vfs/vfs_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/vfs/vfs_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/windows/windows.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/windows/windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/windows/windows.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/windows/windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/MAINTAINERS b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/MAINTAINERS similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/MAINTAINERS rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/MAINTAINERS diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_freebsd.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_freebsd.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_linux.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_linux.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_solaris.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_test.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_test.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/graphdriver/zfs/zfs_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/health.go b/cli/vendor/github.com/docker/docker/daemon/health.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/health.go rename to cli/vendor/github.com/docker/docker/daemon/health.go diff --git a/fn/vendor/github.com/docker/docker/daemon/health_test.go b/cli/vendor/github.com/docker/docker/daemon/health_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/health_test.go rename to cli/vendor/github.com/docker/docker/daemon/health_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image.go b/cli/vendor/github.com/docker/docker/daemon/image.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image.go rename to cli/vendor/github.com/docker/docker/daemon/image.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_delete.go b/cli/vendor/github.com/docker/docker/daemon/image_delete.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_delete.go rename to cli/vendor/github.com/docker/docker/daemon/image_delete.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_exporter.go b/cli/vendor/github.com/docker/docker/daemon/image_exporter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_exporter.go rename to cli/vendor/github.com/docker/docker/daemon/image_exporter.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_history.go b/cli/vendor/github.com/docker/docker/daemon/image_history.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_history.go rename to cli/vendor/github.com/docker/docker/daemon/image_history.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_inspect.go b/cli/vendor/github.com/docker/docker/daemon/image_inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_inspect.go rename to cli/vendor/github.com/docker/docker/daemon/image_inspect.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_pull.go b/cli/vendor/github.com/docker/docker/daemon/image_pull.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_pull.go rename to cli/vendor/github.com/docker/docker/daemon/image_pull.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_push.go b/cli/vendor/github.com/docker/docker/daemon/image_push.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_push.go rename to cli/vendor/github.com/docker/docker/daemon/image_push.go diff --git a/fn/vendor/github.com/docker/docker/daemon/image_tag.go b/cli/vendor/github.com/docker/docker/daemon/image_tag.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/image_tag.go rename to cli/vendor/github.com/docker/docker/daemon/image_tag.go diff --git a/fn/vendor/github.com/docker/docker/daemon/images.go b/cli/vendor/github.com/docker/docker/daemon/images.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/images.go rename to cli/vendor/github.com/docker/docker/daemon/images.go diff --git a/fn/vendor/github.com/docker/docker/daemon/import.go b/cli/vendor/github.com/docker/docker/daemon/import.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/import.go rename to cli/vendor/github.com/docker/docker/daemon/import.go diff --git a/fn/vendor/github.com/docker/docker/daemon/info.go b/cli/vendor/github.com/docker/docker/daemon/info.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/info.go rename to cli/vendor/github.com/docker/docker/daemon/info.go diff --git a/fn/vendor/github.com/docker/docker/daemon/info_unix.go b/cli/vendor/github.com/docker/docker/daemon/info_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/info_unix.go rename to cli/vendor/github.com/docker/docker/daemon/info_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/info_unix_test.go b/cli/vendor/github.com/docker/docker/daemon/info_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/info_unix_test.go rename to cli/vendor/github.com/docker/docker/daemon/info_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/info_windows.go b/cli/vendor/github.com/docker/docker/daemon/info_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/info_windows.go rename to cli/vendor/github.com/docker/docker/daemon/info_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/initlayer/setup_solaris.go b/cli/vendor/github.com/docker/docker/daemon/initlayer/setup_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/initlayer/setup_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/initlayer/setup_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/initlayer/setup_unix.go b/cli/vendor/github.com/docker/docker/daemon/initlayer/setup_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/initlayer/setup_unix.go rename to cli/vendor/github.com/docker/docker/daemon/initlayer/setup_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/initlayer/setup_windows.go b/cli/vendor/github.com/docker/docker/daemon/initlayer/setup_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/initlayer/setup_windows.go rename to cli/vendor/github.com/docker/docker/daemon/initlayer/setup_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/inspect.go b/cli/vendor/github.com/docker/docker/daemon/inspect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/inspect.go rename to cli/vendor/github.com/docker/docker/daemon/inspect.go diff --git a/fn/vendor/github.com/docker/docker/daemon/inspect_solaris.go b/cli/vendor/github.com/docker/docker/daemon/inspect_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/inspect_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/inspect_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/inspect_unix.go b/cli/vendor/github.com/docker/docker/daemon/inspect_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/inspect_unix.go rename to cli/vendor/github.com/docker/docker/daemon/inspect_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/inspect_windows.go b/cli/vendor/github.com/docker/docker/daemon/inspect_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/inspect_windows.go rename to cli/vendor/github.com/docker/docker/daemon/inspect_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/keys.go b/cli/vendor/github.com/docker/docker/daemon/keys.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/keys.go rename to cli/vendor/github.com/docker/docker/daemon/keys.go diff --git a/fn/vendor/github.com/docker/docker/daemon/keys_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/keys_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/keys_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/keys_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/kill.go b/cli/vendor/github.com/docker/docker/daemon/kill.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/kill.go rename to cli/vendor/github.com/docker/docker/daemon/kill.go diff --git a/fn/vendor/github.com/docker/docker/daemon/links.go b/cli/vendor/github.com/docker/docker/daemon/links.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/links.go rename to cli/vendor/github.com/docker/docker/daemon/links.go diff --git a/fn/vendor/github.com/docker/docker/daemon/links/links.go b/cli/vendor/github.com/docker/docker/daemon/links/links.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/links/links.go rename to cli/vendor/github.com/docker/docker/daemon/links/links.go diff --git a/fn/vendor/github.com/docker/docker/daemon/links/links_test.go b/cli/vendor/github.com/docker/docker/daemon/links/links_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/links/links_test.go rename to cli/vendor/github.com/docker/docker/daemon/links/links_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/list.go b/cli/vendor/github.com/docker/docker/daemon/list.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/list.go rename to cli/vendor/github.com/docker/docker/daemon/list.go diff --git a/fn/vendor/github.com/docker/docker/daemon/list_unix.go b/cli/vendor/github.com/docker/docker/daemon/list_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/list_unix.go rename to cli/vendor/github.com/docker/docker/daemon/list_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/list_windows.go b/cli/vendor/github.com/docker/docker/daemon/list_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/list_windows.go rename to cli/vendor/github.com/docker/docker/daemon/list_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logdrivers_linux.go b/cli/vendor/github.com/docker/docker/daemon/logdrivers_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logdrivers_linux.go rename to cli/vendor/github.com/docker/docker/daemon/logdrivers_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logdrivers_windows.go b/cli/vendor/github.com/docker/docker/daemon/logdrivers_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logdrivers_windows.go rename to cli/vendor/github.com/docker/docker/daemon/logdrivers_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/adapter.go b/cli/vendor/github.com/docker/docker/daemon/logger/adapter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/adapter.go rename to cli/vendor/github.com/docker/docker/daemon/logger/adapter.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/adapter_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/adapter_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/adapter_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/adapter_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go b/cli/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go rename to cli/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/awslogs/cwlogsiface_mock_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/awslogs/cwlogsiface_mock_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/awslogs/cwlogsiface_mock_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/awslogs/cwlogsiface_mock_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/copier.go b/cli/vendor/github.com/docker/docker/daemon/logger/copier.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/copier.go rename to cli/vendor/github.com/docker/docker/daemon/logger/copier.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/copier_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/copier_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/copier_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/copier_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/etwlogs/etwlogs_windows.go b/cli/vendor/github.com/docker/docker/daemon/logger/etwlogs/etwlogs_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/etwlogs/etwlogs_windows.go rename to cli/vendor/github.com/docker/docker/daemon/logger/etwlogs/etwlogs_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/factory.go b/cli/vendor/github.com/docker/docker/daemon/logger/factory.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/factory.go rename to cli/vendor/github.com/docker/docker/daemon/logger/factory.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/fluentd/fluentd.go b/cli/vendor/github.com/docker/docker/daemon/logger/fluentd/fluentd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/fluentd/fluentd.go rename to cli/vendor/github.com/docker/docker/daemon/logger/fluentd/fluentd.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging.go b/cli/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging.go rename to cli/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_linux.go b/cli/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_linux.go rename to cli/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_others.go b/cli/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_others.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_others.go rename to cli/vendor/github.com/docker/docker/daemon/logger/gcplogs/gcplogging_others.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/gelf/gelf.go b/cli/vendor/github.com/docker/docker/daemon/logger/gelf/gelf.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/gelf/gelf.go rename to cli/vendor/github.com/docker/docker/daemon/logger/gelf/gelf.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/gelf/gelf_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/logger/gelf/gelf_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/gelf/gelf_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/logger/gelf/gelf_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/journald.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/journald.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/journald.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/journald.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/journald_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/journald_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/journald_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/journald_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/journald_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/journald_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/journald_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/journald_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/read.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/read.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/read.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/read.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/read_native.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/read_native.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/read_native.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/read_native.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/read_native_compat.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/read_native_compat.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/read_native_compat.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/read_native_compat.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/journald/read_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/logger/journald/read_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/journald/read_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/logger/journald/read_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog.go b/cli/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog.go rename to cli/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/jsonfilelog_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/read.go b/cli/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/read.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/read.go rename to cli/vendor/github.com/docker/docker/daemon/logger/jsonfilelog/read.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/logentries/logentries.go b/cli/vendor/github.com/docker/docker/daemon/logger/logentries/logentries.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/logentries/logentries.go rename to cli/vendor/github.com/docker/docker/daemon/logger/logentries/logentries.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/logger.go b/cli/vendor/github.com/docker/docker/daemon/logger/logger.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/logger.go rename to cli/vendor/github.com/docker/docker/daemon/logger/logger.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/logger_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/logger_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/logger_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/logger_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag.go b/cli/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag.go rename to cli/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/loggerutils/log_tag_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/loggerutils/rotatefilewriter.go b/cli/vendor/github.com/docker/docker/daemon/logger/loggerutils/rotatefilewriter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/loggerutils/rotatefilewriter.go rename to cli/vendor/github.com/docker/docker/daemon/logger/loggerutils/rotatefilewriter.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/loginfo.go b/cli/vendor/github.com/docker/docker/daemon/logger/loginfo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/loginfo.go rename to cli/vendor/github.com/docker/docker/daemon/logger/loginfo.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/plugin.go b/cli/vendor/github.com/docker/docker/daemon/logger/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/plugin.go rename to cli/vendor/github.com/docker/docker/daemon/logger/plugin.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/plugin_unix.go b/cli/vendor/github.com/docker/docker/daemon/logger/plugin_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/plugin_unix.go rename to cli/vendor/github.com/docker/docker/daemon/logger/plugin_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/plugin_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/logger/plugin_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/plugin_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/logger/plugin_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/proxy.go b/cli/vendor/github.com/docker/docker/daemon/logger/proxy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/proxy.go rename to cli/vendor/github.com/docker/docker/daemon/logger/proxy.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/ring.go b/cli/vendor/github.com/docker/docker/daemon/logger/ring.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/ring.go rename to cli/vendor/github.com/docker/docker/daemon/logger/ring.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/ring_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/ring_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/ring_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/ring_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/splunk/splunk.go b/cli/vendor/github.com/docker/docker/daemon/logger/splunk/splunk.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/splunk/splunk.go rename to cli/vendor/github.com/docker/docker/daemon/logger/splunk/splunk.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/splunk/splunk_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/splunk/splunk_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/splunk/splunk_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/splunk/splunk_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/splunk/splunkhecmock_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/splunk/splunkhecmock_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/splunk/splunkhecmock_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/splunk/splunkhecmock_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/syslog/syslog.go b/cli/vendor/github.com/docker/docker/daemon/logger/syslog/syslog.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/syslog/syslog.go rename to cli/vendor/github.com/docker/docker/daemon/logger/syslog/syslog.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logger/syslog/syslog_test.go b/cli/vendor/github.com/docker/docker/daemon/logger/syslog/syslog_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logger/syslog/syslog_test.go rename to cli/vendor/github.com/docker/docker/daemon/logger/syslog/syslog_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logs.go b/cli/vendor/github.com/docker/docker/daemon/logs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logs.go rename to cli/vendor/github.com/docker/docker/daemon/logs.go diff --git a/fn/vendor/github.com/docker/docker/daemon/logs_test.go b/cli/vendor/github.com/docker/docker/daemon/logs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/logs_test.go rename to cli/vendor/github.com/docker/docker/daemon/logs_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/metrics.go b/cli/vendor/github.com/docker/docker/daemon/metrics.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/metrics.go rename to cli/vendor/github.com/docker/docker/daemon/metrics.go diff --git a/fn/vendor/github.com/docker/docker/daemon/monitor.go b/cli/vendor/github.com/docker/docker/daemon/monitor.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/monitor.go rename to cli/vendor/github.com/docker/docker/daemon/monitor.go diff --git a/fn/vendor/github.com/docker/docker/daemon/monitor_linux.go b/cli/vendor/github.com/docker/docker/daemon/monitor_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/monitor_linux.go rename to cli/vendor/github.com/docker/docker/daemon/monitor_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/monitor_solaris.go b/cli/vendor/github.com/docker/docker/daemon/monitor_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/monitor_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/monitor_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/monitor_windows.go b/cli/vendor/github.com/docker/docker/daemon/monitor_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/monitor_windows.go rename to cli/vendor/github.com/docker/docker/daemon/monitor_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/mounts.go b/cli/vendor/github.com/docker/docker/daemon/mounts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/mounts.go rename to cli/vendor/github.com/docker/docker/daemon/mounts.go diff --git a/fn/vendor/github.com/docker/docker/daemon/names.go b/cli/vendor/github.com/docker/docker/daemon/names.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/names.go rename to cli/vendor/github.com/docker/docker/daemon/names.go diff --git a/fn/vendor/github.com/docker/docker/daemon/network.go b/cli/vendor/github.com/docker/docker/daemon/network.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/network.go rename to cli/vendor/github.com/docker/docker/daemon/network.go diff --git a/fn/vendor/github.com/docker/docker/daemon/network/settings.go b/cli/vendor/github.com/docker/docker/daemon/network/settings.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/network/settings.go rename to cli/vendor/github.com/docker/docker/daemon/network/settings.go diff --git a/fn/vendor/github.com/docker/docker/daemon/oci_linux.go b/cli/vendor/github.com/docker/docker/daemon/oci_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/oci_linux.go rename to cli/vendor/github.com/docker/docker/daemon/oci_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/oci_solaris.go b/cli/vendor/github.com/docker/docker/daemon/oci_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/oci_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/oci_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/oci_windows.go b/cli/vendor/github.com/docker/docker/daemon/oci_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/oci_windows.go rename to cli/vendor/github.com/docker/docker/daemon/oci_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/pause.go b/cli/vendor/github.com/docker/docker/daemon/pause.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/pause.go rename to cli/vendor/github.com/docker/docker/daemon/pause.go diff --git a/fn/vendor/github.com/docker/docker/daemon/prune.go b/cli/vendor/github.com/docker/docker/daemon/prune.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/prune.go rename to cli/vendor/github.com/docker/docker/daemon/prune.go diff --git a/fn/vendor/github.com/docker/docker/daemon/reload.go b/cli/vendor/github.com/docker/docker/daemon/reload.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/reload.go rename to cli/vendor/github.com/docker/docker/daemon/reload.go diff --git a/fn/vendor/github.com/docker/docker/daemon/reload_test.go b/cli/vendor/github.com/docker/docker/daemon/reload_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/reload_test.go rename to cli/vendor/github.com/docker/docker/daemon/reload_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/rename.go b/cli/vendor/github.com/docker/docker/daemon/rename.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/rename.go rename to cli/vendor/github.com/docker/docker/daemon/rename.go diff --git a/fn/vendor/github.com/docker/docker/daemon/resize.go b/cli/vendor/github.com/docker/docker/daemon/resize.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/resize.go rename to cli/vendor/github.com/docker/docker/daemon/resize.go diff --git a/fn/vendor/github.com/docker/docker/daemon/restart.go b/cli/vendor/github.com/docker/docker/daemon/restart.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/restart.go rename to cli/vendor/github.com/docker/docker/daemon/restart.go diff --git a/fn/vendor/github.com/docker/docker/daemon/search.go b/cli/vendor/github.com/docker/docker/daemon/search.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/search.go rename to cli/vendor/github.com/docker/docker/daemon/search.go diff --git a/fn/vendor/github.com/docker/docker/daemon/search_test.go b/cli/vendor/github.com/docker/docker/daemon/search_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/search_test.go rename to cli/vendor/github.com/docker/docker/daemon/search_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/seccomp_disabled.go b/cli/vendor/github.com/docker/docker/daemon/seccomp_disabled.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/seccomp_disabled.go rename to cli/vendor/github.com/docker/docker/daemon/seccomp_disabled.go diff --git a/fn/vendor/github.com/docker/docker/daemon/seccomp_linux.go b/cli/vendor/github.com/docker/docker/daemon/seccomp_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/seccomp_linux.go rename to cli/vendor/github.com/docker/docker/daemon/seccomp_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/seccomp_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/seccomp_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/seccomp_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/seccomp_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/secrets.go b/cli/vendor/github.com/docker/docker/daemon/secrets.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/secrets.go rename to cli/vendor/github.com/docker/docker/daemon/secrets.go diff --git a/fn/vendor/github.com/docker/docker/daemon/secrets_linux.go b/cli/vendor/github.com/docker/docker/daemon/secrets_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/secrets_linux.go rename to cli/vendor/github.com/docker/docker/daemon/secrets_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/secrets_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/secrets_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/secrets_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/secrets_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/selinux_linux.go b/cli/vendor/github.com/docker/docker/daemon/selinux_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/selinux_linux.go rename to cli/vendor/github.com/docker/docker/daemon/selinux_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/selinux_unsupported.go b/cli/vendor/github.com/docker/docker/daemon/selinux_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/selinux_unsupported.go rename to cli/vendor/github.com/docker/docker/daemon/selinux_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/daemon/start.go b/cli/vendor/github.com/docker/docker/daemon/start.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/start.go rename to cli/vendor/github.com/docker/docker/daemon/start.go diff --git a/fn/vendor/github.com/docker/docker/daemon/start_unix.go b/cli/vendor/github.com/docker/docker/daemon/start_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/start_unix.go rename to cli/vendor/github.com/docker/docker/daemon/start_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/start_windows.go b/cli/vendor/github.com/docker/docker/daemon/start_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/start_windows.go rename to cli/vendor/github.com/docker/docker/daemon/start_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats.go b/cli/vendor/github.com/docker/docker/daemon/stats.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats.go rename to cli/vendor/github.com/docker/docker/daemon/stats.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats/collector.go b/cli/vendor/github.com/docker/docker/daemon/stats/collector.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats/collector.go rename to cli/vendor/github.com/docker/docker/daemon/stats/collector.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats/collector_solaris.go b/cli/vendor/github.com/docker/docker/daemon/stats/collector_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats/collector_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/stats/collector_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats/collector_unix.go b/cli/vendor/github.com/docker/docker/daemon/stats/collector_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats/collector_unix.go rename to cli/vendor/github.com/docker/docker/daemon/stats/collector_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats/collector_windows.go b/cli/vendor/github.com/docker/docker/daemon/stats/collector_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats/collector_windows.go rename to cli/vendor/github.com/docker/docker/daemon/stats/collector_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats/types.go b/cli/vendor/github.com/docker/docker/daemon/stats/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats/types.go rename to cli/vendor/github.com/docker/docker/daemon/stats/types.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats_collector.go b/cli/vendor/github.com/docker/docker/daemon/stats_collector.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats_collector.go rename to cli/vendor/github.com/docker/docker/daemon/stats_collector.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats_unix.go b/cli/vendor/github.com/docker/docker/daemon/stats_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats_unix.go rename to cli/vendor/github.com/docker/docker/daemon/stats_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stats_windows.go b/cli/vendor/github.com/docker/docker/daemon/stats_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stats_windows.go rename to cli/vendor/github.com/docker/docker/daemon/stats_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/stop.go b/cli/vendor/github.com/docker/docker/daemon/stop.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/stop.go rename to cli/vendor/github.com/docker/docker/daemon/stop.go diff --git a/fn/vendor/github.com/docker/docker/daemon/top_unix.go b/cli/vendor/github.com/docker/docker/daemon/top_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/top_unix.go rename to cli/vendor/github.com/docker/docker/daemon/top_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/top_unix_test.go b/cli/vendor/github.com/docker/docker/daemon/top_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/top_unix_test.go rename to cli/vendor/github.com/docker/docker/daemon/top_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/top_windows.go b/cli/vendor/github.com/docker/docker/daemon/top_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/top_windows.go rename to cli/vendor/github.com/docker/docker/daemon/top_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/unpause.go b/cli/vendor/github.com/docker/docker/daemon/unpause.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/unpause.go rename to cli/vendor/github.com/docker/docker/daemon/unpause.go diff --git a/fn/vendor/github.com/docker/docker/daemon/update.go b/cli/vendor/github.com/docker/docker/daemon/update.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/update.go rename to cli/vendor/github.com/docker/docker/daemon/update.go diff --git a/fn/vendor/github.com/docker/docker/daemon/update_linux.go b/cli/vendor/github.com/docker/docker/daemon/update_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/update_linux.go rename to cli/vendor/github.com/docker/docker/daemon/update_linux.go diff --git a/fn/vendor/github.com/docker/docker/daemon/update_solaris.go b/cli/vendor/github.com/docker/docker/daemon/update_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/update_solaris.go rename to cli/vendor/github.com/docker/docker/daemon/update_solaris.go diff --git a/fn/vendor/github.com/docker/docker/daemon/update_windows.go b/cli/vendor/github.com/docker/docker/daemon/update_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/update_windows.go rename to cli/vendor/github.com/docker/docker/daemon/update_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/volumes.go b/cli/vendor/github.com/docker/docker/daemon/volumes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/volumes.go rename to cli/vendor/github.com/docker/docker/daemon/volumes.go diff --git a/fn/vendor/github.com/docker/docker/daemon/volumes_unit_test.go b/cli/vendor/github.com/docker/docker/daemon/volumes_unit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/volumes_unit_test.go rename to cli/vendor/github.com/docker/docker/daemon/volumes_unit_test.go diff --git a/fn/vendor/github.com/docker/docker/daemon/volumes_unix.go b/cli/vendor/github.com/docker/docker/daemon/volumes_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/volumes_unix.go rename to cli/vendor/github.com/docker/docker/daemon/volumes_unix.go diff --git a/fn/vendor/github.com/docker/docker/daemon/volumes_windows.go b/cli/vendor/github.com/docker/docker/daemon/volumes_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/volumes_windows.go rename to cli/vendor/github.com/docker/docker/daemon/volumes_windows.go diff --git a/fn/vendor/github.com/docker/docker/daemon/wait.go b/cli/vendor/github.com/docker/docker/daemon/wait.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/wait.go rename to cli/vendor/github.com/docker/docker/daemon/wait.go diff --git a/fn/vendor/github.com/docker/docker/daemon/workdir.go b/cli/vendor/github.com/docker/docker/daemon/workdir.go similarity index 100% rename from fn/vendor/github.com/docker/docker/daemon/workdir.go rename to cli/vendor/github.com/docker/docker/daemon/workdir.go diff --git a/fn/vendor/github.com/docker/docker/distribution/config.go b/cli/vendor/github.com/docker/docker/distribution/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/config.go rename to cli/vendor/github.com/docker/docker/distribution/config.go diff --git a/fn/vendor/github.com/docker/docker/distribution/errors.go b/cli/vendor/github.com/docker/docker/distribution/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/errors.go rename to cli/vendor/github.com/docker/docker/distribution/errors.go diff --git a/fn/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/bad_manifest b/cli/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/bad_manifest similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/bad_manifest rename to cli/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/bad_manifest diff --git a/fn/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/extra_data_manifest b/cli/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/extra_data_manifest similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/extra_data_manifest rename to cli/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/extra_data_manifest diff --git a/fn/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/good_manifest b/cli/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/good_manifest similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/good_manifest rename to cli/vendor/github.com/docker/docker/distribution/fixtures/validate_manifest/good_manifest diff --git a/fn/vendor/github.com/docker/docker/distribution/metadata/metadata.go b/cli/vendor/github.com/docker/docker/distribution/metadata/metadata.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/metadata/metadata.go rename to cli/vendor/github.com/docker/docker/distribution/metadata/metadata.go diff --git a/fn/vendor/github.com/docker/docker/distribution/metadata/v1_id_service.go b/cli/vendor/github.com/docker/docker/distribution/metadata/v1_id_service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/metadata/v1_id_service.go rename to cli/vendor/github.com/docker/docker/distribution/metadata/v1_id_service.go diff --git a/fn/vendor/github.com/docker/docker/distribution/metadata/v1_id_service_test.go b/cli/vendor/github.com/docker/docker/distribution/metadata/v1_id_service_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/metadata/v1_id_service_test.go rename to cli/vendor/github.com/docker/docker/distribution/metadata/v1_id_service_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service.go b/cli/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service.go rename to cli/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service.go diff --git a/fn/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service_test.go b/cli/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service_test.go rename to cli/vendor/github.com/docker/docker/distribution/metadata/v2_metadata_service_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/pull.go b/cli/vendor/github.com/docker/docker/distribution/pull.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/pull.go rename to cli/vendor/github.com/docker/docker/distribution/pull.go diff --git a/fn/vendor/github.com/docker/docker/distribution/pull_v1.go b/cli/vendor/github.com/docker/docker/distribution/pull_v1.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/pull_v1.go rename to cli/vendor/github.com/docker/docker/distribution/pull_v1.go diff --git a/fn/vendor/github.com/docker/docker/distribution/pull_v2.go b/cli/vendor/github.com/docker/docker/distribution/pull_v2.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/pull_v2.go rename to cli/vendor/github.com/docker/docker/distribution/pull_v2.go diff --git a/fn/vendor/github.com/docker/docker/distribution/pull_v2_test.go b/cli/vendor/github.com/docker/docker/distribution/pull_v2_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/pull_v2_test.go rename to cli/vendor/github.com/docker/docker/distribution/pull_v2_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/pull_v2_unix.go b/cli/vendor/github.com/docker/docker/distribution/pull_v2_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/pull_v2_unix.go rename to cli/vendor/github.com/docker/docker/distribution/pull_v2_unix.go diff --git a/fn/vendor/github.com/docker/docker/distribution/pull_v2_windows.go b/cli/vendor/github.com/docker/docker/distribution/pull_v2_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/pull_v2_windows.go rename to cli/vendor/github.com/docker/docker/distribution/pull_v2_windows.go diff --git a/fn/vendor/github.com/docker/docker/distribution/push.go b/cli/vendor/github.com/docker/docker/distribution/push.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/push.go rename to cli/vendor/github.com/docker/docker/distribution/push.go diff --git a/fn/vendor/github.com/docker/docker/distribution/push_v1.go b/cli/vendor/github.com/docker/docker/distribution/push_v1.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/push_v1.go rename to cli/vendor/github.com/docker/docker/distribution/push_v1.go diff --git a/fn/vendor/github.com/docker/docker/distribution/push_v2.go b/cli/vendor/github.com/docker/docker/distribution/push_v2.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/push_v2.go rename to cli/vendor/github.com/docker/docker/distribution/push_v2.go diff --git a/fn/vendor/github.com/docker/docker/distribution/push_v2_test.go b/cli/vendor/github.com/docker/docker/distribution/push_v2_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/push_v2_test.go rename to cli/vendor/github.com/docker/docker/distribution/push_v2_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/registry.go b/cli/vendor/github.com/docker/docker/distribution/registry.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/registry.go rename to cli/vendor/github.com/docker/docker/distribution/registry.go diff --git a/fn/vendor/github.com/docker/docker/distribution/registry_unit_test.go b/cli/vendor/github.com/docker/docker/distribution/registry_unit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/registry_unit_test.go rename to cli/vendor/github.com/docker/docker/distribution/registry_unit_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/utils/progress.go b/cli/vendor/github.com/docker/docker/distribution/utils/progress.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/utils/progress.go rename to cli/vendor/github.com/docker/docker/distribution/utils/progress.go diff --git a/fn/vendor/github.com/docker/docker/distribution/xfer/download.go b/cli/vendor/github.com/docker/docker/distribution/xfer/download.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/xfer/download.go rename to cli/vendor/github.com/docker/docker/distribution/xfer/download.go diff --git a/fn/vendor/github.com/docker/docker/distribution/xfer/download_test.go b/cli/vendor/github.com/docker/docker/distribution/xfer/download_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/xfer/download_test.go rename to cli/vendor/github.com/docker/docker/distribution/xfer/download_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/xfer/transfer.go b/cli/vendor/github.com/docker/docker/distribution/xfer/transfer.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/xfer/transfer.go rename to cli/vendor/github.com/docker/docker/distribution/xfer/transfer.go diff --git a/fn/vendor/github.com/docker/docker/distribution/xfer/transfer_test.go b/cli/vendor/github.com/docker/docker/distribution/xfer/transfer_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/xfer/transfer_test.go rename to cli/vendor/github.com/docker/docker/distribution/xfer/transfer_test.go diff --git a/fn/vendor/github.com/docker/docker/distribution/xfer/upload.go b/cli/vendor/github.com/docker/docker/distribution/xfer/upload.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/xfer/upload.go rename to cli/vendor/github.com/docker/docker/distribution/xfer/upload.go diff --git a/fn/vendor/github.com/docker/docker/distribution/xfer/upload_test.go b/cli/vendor/github.com/docker/docker/distribution/xfer/upload_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/distribution/xfer/upload_test.go rename to cli/vendor/github.com/docker/docker/distribution/xfer/upload_test.go diff --git a/fn/vendor/github.com/docker/docker/dockerversion/useragent.go b/cli/vendor/github.com/docker/docker/dockerversion/useragent.go similarity index 100% rename from fn/vendor/github.com/docker/docker/dockerversion/useragent.go rename to cli/vendor/github.com/docker/docker/dockerversion/useragent.go diff --git a/fn/vendor/github.com/docker/docker/dockerversion/version_lib.go b/cli/vendor/github.com/docker/docker/dockerversion/version_lib.go similarity index 100% rename from fn/vendor/github.com/docker/docker/dockerversion/version_lib.go rename to cli/vendor/github.com/docker/docker/dockerversion/version_lib.go diff --git a/fn/vendor/github.com/docker/docker/docs/README.md b/cli/vendor/github.com/docker/docker/docs/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/README.md rename to cli/vendor/github.com/docker/docker/docs/README.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.18.md b/cli/vendor/github.com/docker/docker/docs/api/v1.18.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.18.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.18.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.19.md b/cli/vendor/github.com/docker/docker/docs/api/v1.19.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.19.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.19.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.20.md b/cli/vendor/github.com/docker/docker/docs/api/v1.20.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.20.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.20.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.21.md b/cli/vendor/github.com/docker/docker/docs/api/v1.21.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.21.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.21.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.22.md b/cli/vendor/github.com/docker/docker/docs/api/v1.22.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.22.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.22.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.23.md b/cli/vendor/github.com/docker/docker/docs/api/v1.23.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.23.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.23.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/v1.24.md b/cli/vendor/github.com/docker/docker/docs/api/v1.24.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/v1.24.md rename to cli/vendor/github.com/docker/docker/docs/api/v1.24.md diff --git a/fn/vendor/github.com/docker/docker/docs/api/version-history.md b/cli/vendor/github.com/docker/docker/docs/api/version-history.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/api/version-history.md rename to cli/vendor/github.com/docker/docker/docs/api/version-history.md diff --git a/fn/vendor/github.com/docker/docker/docs/deprecated.md b/cli/vendor/github.com/docker/docker/docs/deprecated.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/deprecated.md rename to cli/vendor/github.com/docker/docker/docs/deprecated.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/EBS_volume.md b/cli/vendor/github.com/docker/docker/docs/extend/EBS_volume.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/EBS_volume.md rename to cli/vendor/github.com/docker/docker/docs/extend/EBS_volume.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/config.md b/cli/vendor/github.com/docker/docker/docs/extend/config.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/config.md rename to cli/vendor/github.com/docker/docker/docs/extend/config.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/images/authz_additional_info.png b/cli/vendor/github.com/docker/docker/docs/extend/images/authz_additional_info.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/images/authz_additional_info.png rename to cli/vendor/github.com/docker/docker/docs/extend/images/authz_additional_info.png diff --git a/fn/vendor/github.com/docker/docker/docs/extend/images/authz_allow.png b/cli/vendor/github.com/docker/docker/docs/extend/images/authz_allow.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/images/authz_allow.png rename to cli/vendor/github.com/docker/docker/docs/extend/images/authz_allow.png diff --git a/fn/vendor/github.com/docker/docker/docs/extend/images/authz_chunked.png b/cli/vendor/github.com/docker/docker/docs/extend/images/authz_chunked.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/images/authz_chunked.png rename to cli/vendor/github.com/docker/docker/docs/extend/images/authz_chunked.png diff --git a/fn/vendor/github.com/docker/docker/docs/extend/images/authz_connection_hijack.png b/cli/vendor/github.com/docker/docker/docs/extend/images/authz_connection_hijack.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/images/authz_connection_hijack.png rename to cli/vendor/github.com/docker/docker/docs/extend/images/authz_connection_hijack.png diff --git a/fn/vendor/github.com/docker/docker/docs/extend/images/authz_deny.png b/cli/vendor/github.com/docker/docker/docs/extend/images/authz_deny.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/images/authz_deny.png rename to cli/vendor/github.com/docker/docker/docs/extend/images/authz_deny.png diff --git a/fn/vendor/github.com/docker/docker/docs/extend/index.md b/cli/vendor/github.com/docker/docker/docs/extend/index.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/index.md rename to cli/vendor/github.com/docker/docker/docs/extend/index.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/legacy_plugins.md b/cli/vendor/github.com/docker/docker/docs/extend/legacy_plugins.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/legacy_plugins.md rename to cli/vendor/github.com/docker/docker/docs/extend/legacy_plugins.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugin_api.md b/cli/vendor/github.com/docker/docker/docs/extend/plugin_api.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugin_api.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugin_api.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugins_authorization.md b/cli/vendor/github.com/docker/docker/docs/extend/plugins_authorization.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugins_authorization.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugins_authorization.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugins_graphdriver.md b/cli/vendor/github.com/docker/docker/docs/extend/plugins_graphdriver.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugins_graphdriver.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugins_graphdriver.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugins_logging.md b/cli/vendor/github.com/docker/docker/docs/extend/plugins_logging.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugins_logging.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugins_logging.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugins_network.md b/cli/vendor/github.com/docker/docker/docs/extend/plugins_network.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugins_network.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugins_network.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugins_services.md b/cli/vendor/github.com/docker/docker/docs/extend/plugins_services.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugins_services.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugins_services.md diff --git a/fn/vendor/github.com/docker/docker/docs/extend/plugins_volume.md b/cli/vendor/github.com/docker/docker/docs/extend/plugins_volume.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/extend/plugins_volume.md rename to cli/vendor/github.com/docker/docker/docs/extend/plugins_volume.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/builder.md b/cli/vendor/github.com/docker/docker/docs/reference/builder.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/builder.md rename to cli/vendor/github.com/docker/docker/docs/reference/builder.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/attach.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/attach.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/attach.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/attach.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/build.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/build.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/build.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/build.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/cli.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/cli.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/cli.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/cli.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/commit.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/commit.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/commit.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/commit.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/container.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/container.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/container.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/container.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/container_prune.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/container_prune.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/container_prune.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/container_prune.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/cp.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/cp.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/cp.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/cp.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/create.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/create.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/create.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/deploy.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/deploy.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/deploy.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/deploy.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/diff.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/diff.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/diff.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/diff.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/dockerd.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/dockerd.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/dockerd.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/dockerd.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/events.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/events.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/events.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/events.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/exec.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/exec.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/exec.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/exec.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/export.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/export.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/export.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/export.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/history.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/history.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/history.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/history.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/image.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/image.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/image.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/image.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/image_prune.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/image_prune.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/image_prune.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/image_prune.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/images.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/images.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/images.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/images.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/import.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/import.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/import.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/import.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/index.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/index.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/index.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/index.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/info.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/info.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/info.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/info.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/kill.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/kill.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/kill.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/kill.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/load.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/load.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/load.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/load.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/login.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/login.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/login.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/login.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/logout.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/logout.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/logout.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/logout.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/logs.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/logs.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/logs.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/logs.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_connect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_connect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_connect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_connect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_create.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_create.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_create.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_disconnect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_disconnect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_disconnect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_disconnect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_prune.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_prune.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_prune.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_prune.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/network_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/network_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/network_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/network_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_demote.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_demote.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_demote.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_demote.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_promote.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_promote.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_promote.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_promote.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_ps.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_ps.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_ps.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_ps.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/node_update.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/node_update.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/node_update.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/node_update.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/pause.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/pause.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/pause.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/pause.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_create.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_create.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_create.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_disable.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_disable.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_disable.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_disable.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_enable.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_enable.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_enable.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_enable.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_install.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_install.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_install.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_install.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_push.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_push.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_push.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_push.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_set.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_set.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_set.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_set.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_upgrade.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_upgrade.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/plugin_upgrade.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/plugin_upgrade.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/port.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/port.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/port.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/port.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/ps.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/ps.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/ps.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/ps.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/pull.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/pull.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/pull.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/pull.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/push.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/push.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/push.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/push.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/rename.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/rename.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/rename.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/rename.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/restart.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/restart.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/restart.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/restart.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/rmi.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/rmi.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/rmi.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/rmi.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/run.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/run.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/run.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/run.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/save.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/save.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/save.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/save.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/search.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/search.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/search.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/search.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/secret.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/secret.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/secret.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/secret.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_create.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_create.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_create.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/secret_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/secret_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_create.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_create.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_create.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_logs.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_logs.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_logs.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_logs.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_ps.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_ps.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_ps.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_ps.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_scale.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_scale.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_scale.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_scale.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/service_update.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/service_update.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/service_update.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/service_update.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stack.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stack.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stack.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stack.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_deploy.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_deploy.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_deploy.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_deploy.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_ps.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_ps.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_ps.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_ps.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_services.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_services.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stack_services.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stack_services.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/start.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/start.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/start.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/start.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stats.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stats.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stats.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stats.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/stop.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/stop.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/stop.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/stop.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_init.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_init.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_init.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_init.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join_token.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join_token.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join_token.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_join_token.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_leave.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_leave.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_leave.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_leave.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock_key.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock_key.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock_key.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_unlock_key.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_update.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_update.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/swarm_update.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/swarm_update.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/system.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/system.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/system.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/system.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/system_df.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/system_df.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/system_df.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/system_df.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/system_prune.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/system_prune.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/system_prune.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/system_prune.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/tag.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/tag.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/tag.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/tag.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/top.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/top.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/top.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/top.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/unpause.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/unpause.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/unpause.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/unpause.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/update.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/update.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/update.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/update.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/version.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/version.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/version.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/version.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/volume.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/volume.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/volume.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/volume.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_create.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_create.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_create.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_inspect.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_inspect.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_inspect.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_ls.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_ls.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_ls.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_prune.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_prune.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_prune.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_prune.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_rm.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/volume_rm.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/volume_rm.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/commandline/wait.md b/cli/vendor/github.com/docker/docker/docs/reference/commandline/wait.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/commandline/wait.md rename to cli/vendor/github.com/docker/docker/docs/reference/commandline/wait.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/glossary.md b/cli/vendor/github.com/docker/docker/docs/reference/glossary.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/glossary.md rename to cli/vendor/github.com/docker/docker/docs/reference/glossary.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/index.md b/cli/vendor/github.com/docker/docker/docs/reference/index.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/index.md rename to cli/vendor/github.com/docker/docker/docs/reference/index.md diff --git a/fn/vendor/github.com/docker/docker/docs/reference/run.md b/cli/vendor/github.com/docker/docker/docs/reference/run.md similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/reference/run.md rename to cli/vendor/github.com/docker/docker/docs/reference/run.md diff --git a/fn/vendor/github.com/docker/docker/docs/static_files/contributors.png b/cli/vendor/github.com/docker/docker/docs/static_files/contributors.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/static_files/contributors.png rename to cli/vendor/github.com/docker/docker/docs/static_files/contributors.png diff --git a/fn/vendor/github.com/docker/docker/docs/static_files/docker-logo-compressed.png b/cli/vendor/github.com/docker/docker/docs/static_files/docker-logo-compressed.png similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/static_files/docker-logo-compressed.png rename to cli/vendor/github.com/docker/docker/docs/static_files/docker-logo-compressed.png diff --git a/fn/vendor/github.com/docker/docker/docs/yaml/Dockerfile b/cli/vendor/github.com/docker/docker/docs/yaml/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/yaml/Dockerfile rename to cli/vendor/github.com/docker/docker/docs/yaml/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/docs/yaml/generate.go b/cli/vendor/github.com/docker/docker/docs/yaml/generate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/yaml/generate.go rename to cli/vendor/github.com/docker/docker/docs/yaml/generate.go diff --git a/fn/vendor/github.com/docker/docker/docs/yaml/yaml.go b/cli/vendor/github.com/docker/docker/docs/yaml/yaml.go similarity index 100% rename from fn/vendor/github.com/docker/docker/docs/yaml/yaml.go rename to cli/vendor/github.com/docker/docker/docs/yaml/yaml.go diff --git a/fn/vendor/github.com/docker/docker/experimental/README.md b/cli/vendor/github.com/docker/docker/experimental/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/README.md rename to cli/vendor/github.com/docker/docker/experimental/README.md diff --git a/fn/vendor/github.com/docker/docker/experimental/checkpoint-restore.md b/cli/vendor/github.com/docker/docker/experimental/checkpoint-restore.md similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/checkpoint-restore.md rename to cli/vendor/github.com/docker/docker/experimental/checkpoint-restore.md diff --git a/fn/vendor/github.com/docker/docker/experimental/docker-stacks-and-bundles.md b/cli/vendor/github.com/docker/docker/experimental/docker-stacks-and-bundles.md similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/docker-stacks-and-bundles.md rename to cli/vendor/github.com/docker/docker/experimental/docker-stacks-and-bundles.md diff --git a/fn/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.gliffy b/cli/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.gliffy similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.gliffy rename to cli/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.gliffy diff --git a/fn/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.png b/cli/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.png similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.png rename to cli/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.png diff --git a/fn/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.svg b/cli/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.svg similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.svg rename to cli/vendor/github.com/docker/docker/experimental/images/ipvlan-l3.svg diff --git a/fn/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.gliffy b/cli/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.gliffy similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.gliffy rename to cli/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.gliffy diff --git a/fn/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.png b/cli/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.png similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.png rename to cli/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.png diff --git a/fn/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.svg b/cli/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.svg similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.svg rename to cli/vendor/github.com/docker/docker/experimental/images/ipvlan_l2_simple.svg diff --git a/fn/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.gliffy b/cli/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.gliffy similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.gliffy rename to cli/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.gliffy diff --git a/fn/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.png b/cli/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.png similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.png rename to cli/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.png diff --git a/fn/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.svg b/cli/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.svg similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.svg rename to cli/vendor/github.com/docker/docker/experimental/images/macvlan-bridge-ipvlan-l2.svg diff --git a/fn/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.gliffy b/cli/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.gliffy similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.gliffy rename to cli/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.gliffy diff --git a/fn/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.png b/cli/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.png similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.png rename to cli/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.png diff --git a/fn/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.svg b/cli/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.svg similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.svg rename to cli/vendor/github.com/docker/docker/experimental/images/multi_tenant_8021q_vlans.svg diff --git a/fn/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.gliffy b/cli/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.gliffy similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.gliffy rename to cli/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.gliffy diff --git a/fn/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.png b/cli/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.png similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.png rename to cli/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.png diff --git a/fn/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.svg b/cli/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.svg similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.svg rename to cli/vendor/github.com/docker/docker/experimental/images/vlans-deeper-look.svg diff --git a/fn/vendor/github.com/docker/docker/experimental/vlan-networks.md b/cli/vendor/github.com/docker/docker/experimental/vlan-networks.md similarity index 100% rename from fn/vendor/github.com/docker/docker/experimental/vlan-networks.md rename to cli/vendor/github.com/docker/docker/experimental/vlan-networks.md diff --git a/fn/vendor/github.com/docker/docker/hack/Jenkins/W2L/postbuild.sh b/cli/vendor/github.com/docker/docker/hack/Jenkins/W2L/postbuild.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/Jenkins/W2L/postbuild.sh rename to cli/vendor/github.com/docker/docker/hack/Jenkins/W2L/postbuild.sh diff --git a/fn/vendor/github.com/docker/docker/hack/Jenkins/W2L/setup.sh b/cli/vendor/github.com/docker/docker/hack/Jenkins/W2L/setup.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/Jenkins/W2L/setup.sh rename to cli/vendor/github.com/docker/docker/hack/Jenkins/W2L/setup.sh diff --git a/fn/vendor/github.com/docker/docker/hack/Jenkins/readme.md b/cli/vendor/github.com/docker/docker/hack/Jenkins/readme.md similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/Jenkins/readme.md rename to cli/vendor/github.com/docker/docker/hack/Jenkins/readme.md diff --git a/fn/vendor/github.com/docker/docker/hack/dind b/cli/vendor/github.com/docker/docker/hack/dind similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/dind rename to cli/vendor/github.com/docker/docker/hack/dind diff --git a/fn/vendor/github.com/docker/docker/hack/dockerfile/binaries-commits b/cli/vendor/github.com/docker/docker/hack/dockerfile/binaries-commits similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/dockerfile/binaries-commits rename to cli/vendor/github.com/docker/docker/hack/dockerfile/binaries-commits diff --git a/fn/vendor/github.com/docker/docker/hack/dockerfile/install-binaries.sh b/cli/vendor/github.com/docker/docker/hack/dockerfile/install-binaries.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/dockerfile/install-binaries.sh rename to cli/vendor/github.com/docker/docker/hack/dockerfile/install-binaries.sh diff --git a/fn/vendor/github.com/docker/docker/hack/generate-authors.sh b/cli/vendor/github.com/docker/docker/hack/generate-authors.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/generate-authors.sh rename to cli/vendor/github.com/docker/docker/hack/generate-authors.sh diff --git a/fn/vendor/github.com/docker/docker/hack/generate-swagger-api.sh b/cli/vendor/github.com/docker/docker/hack/generate-swagger-api.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/generate-swagger-api.sh rename to cli/vendor/github.com/docker/docker/hack/generate-swagger-api.sh diff --git a/fn/vendor/github.com/docker/docker/hack/install.sh b/cli/vendor/github.com/docker/docker/hack/install.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/install.sh rename to cli/vendor/github.com/docker/docker/hack/install.sh diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/README.md b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/README.md rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/README.md diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/Dockerfile b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/Dockerfile rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/call.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/call.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/call.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/call.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/master.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/master.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/master.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/master.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set_test.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set_test.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/master/set_test.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/types/types.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/types/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/types/types.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/types/types.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/vendor.conf b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/vendor.conf similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/vendor.conf rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/vendor.conf diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/executor.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/executor.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/executor.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/executor.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/worker.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/worker.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/worker.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/agent/worker/worker.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/compose.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/compose.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/compose.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/compose.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/dockercmd.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/dockercmd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/dockercmd.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/dockercmd.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate_test.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate_test.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/enumerate_test.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/host.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/host.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/host.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/host.go diff --git a/fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/volume.go b/cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/volume.go rename to cli/vendor/github.com/docker/docker/hack/integration-cli-on-swarm/host/volume.go diff --git a/fn/vendor/github.com/docker/docker/hack/make.ps1 b/cli/vendor/github.com/docker/docker/hack/make.ps1 similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make.ps1 rename to cli/vendor/github.com/docker/docker/hack/make.ps1 diff --git a/fn/vendor/github.com/docker/docker/hack/make.sh b/cli/vendor/github.com/docker/docker/hack/make.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make.sh rename to cli/vendor/github.com/docker/docker/hack/make.sh diff --git a/fn/vendor/github.com/docker/docker/hack/make/.binary b/cli/vendor/github.com/docker/docker/hack/make/.binary similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.binary rename to cli/vendor/github.com/docker/docker/hack/make/.binary diff --git a/fn/vendor/github.com/docker/docker/hack/make/.binary-setup b/cli/vendor/github.com/docker/docker/hack/make/.binary-setup similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.binary-setup rename to cli/vendor/github.com/docker/docker/hack/make/.binary-setup diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/compat b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/compat similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/compat rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/compat diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/control b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/control similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/control rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/control diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.bash-completion b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.bash-completion similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.bash-completion rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.bash-completion diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.default diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.init diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.docker.upstart diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.install b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.install similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.install rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.install diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.manpages b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.manpages similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.manpages rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.manpages diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.postinst b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.postinst similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.postinst rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.postinst diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docker-engine.udev diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/docs b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/docs similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/docs rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/docs diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-deb/rules b/cli/vendor/github.com/docker/docker/hack/make/.build-deb/rules similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-deb/rules rename to cli/vendor/github.com/docker/docker/hack/make/.build-deb/rules diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine-selinux.spec b/cli/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine-selinux.spec similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine-selinux.spec rename to cli/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine-selinux.spec diff --git a/fn/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine.spec b/cli/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine.spec similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine.spec rename to cli/vendor/github.com/docker/docker/hack/make/.build-rpm/docker-engine.spec diff --git a/fn/vendor/github.com/docker/docker/hack/make/.detect-daemon-osarch b/cli/vendor/github.com/docker/docker/hack/make/.detect-daemon-osarch similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.detect-daemon-osarch rename to cli/vendor/github.com/docker/docker/hack/make/.detect-daemon-osarch diff --git a/fn/vendor/github.com/docker/docker/hack/make/.ensure-emptyfs b/cli/vendor/github.com/docker/docker/hack/make/.ensure-emptyfs similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.ensure-emptyfs rename to cli/vendor/github.com/docker/docker/hack/make/.ensure-emptyfs diff --git a/fn/vendor/github.com/docker/docker/hack/make/.go-autogen b/cli/vendor/github.com/docker/docker/hack/make/.go-autogen similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.go-autogen rename to cli/vendor/github.com/docker/docker/hack/make/.go-autogen diff --git a/fn/vendor/github.com/docker/docker/hack/make/.go-autogen.ps1 b/cli/vendor/github.com/docker/docker/hack/make/.go-autogen.ps1 similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.go-autogen.ps1 rename to cli/vendor/github.com/docker/docker/hack/make/.go-autogen.ps1 diff --git a/fn/vendor/github.com/docker/docker/hack/make/.integration-daemon-setup b/cli/vendor/github.com/docker/docker/hack/make/.integration-daemon-setup similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.integration-daemon-setup rename to cli/vendor/github.com/docker/docker/hack/make/.integration-daemon-setup diff --git a/fn/vendor/github.com/docker/docker/hack/make/.integration-daemon-start b/cli/vendor/github.com/docker/docker/hack/make/.integration-daemon-start similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.integration-daemon-start rename to cli/vendor/github.com/docker/docker/hack/make/.integration-daemon-start diff --git a/fn/vendor/github.com/docker/docker/hack/make/.integration-daemon-stop b/cli/vendor/github.com/docker/docker/hack/make/.integration-daemon-stop similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.integration-daemon-stop rename to cli/vendor/github.com/docker/docker/hack/make/.integration-daemon-stop diff --git a/fn/vendor/github.com/docker/docker/hack/make/.integration-test-helpers b/cli/vendor/github.com/docker/docker/hack/make/.integration-test-helpers similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.integration-test-helpers rename to cli/vendor/github.com/docker/docker/hack/make/.integration-test-helpers diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/common.rc b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/common.rc similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/common.rc rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/common.rc diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.exe.manifest b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.exe.manifest similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.exe.manifest rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.exe.manifest diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.ico b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.ico similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.ico rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.ico diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.png b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.png similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.png rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.png diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.rc b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.rc similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.rc rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/docker.rc diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/dockerd.rc b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/dockerd.rc similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/dockerd.rc rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/dockerd.rc diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/event_messages.mc b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/event_messages.mc similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/event_messages.mc rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/event_messages.mc diff --git a/fn/vendor/github.com/docker/docker/hack/make/.resources-windows/resources.go b/cli/vendor/github.com/docker/docker/hack/make/.resources-windows/resources.go similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/.resources-windows/resources.go rename to cli/vendor/github.com/docker/docker/hack/make/.resources-windows/resources.go diff --git a/fn/vendor/github.com/docker/docker/hack/make/README.md b/cli/vendor/github.com/docker/docker/hack/make/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/README.md rename to cli/vendor/github.com/docker/docker/hack/make/README.md diff --git a/fn/vendor/github.com/docker/docker/hack/make/binary b/cli/vendor/github.com/docker/docker/hack/make/binary similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/binary rename to cli/vendor/github.com/docker/docker/hack/make/binary diff --git a/fn/vendor/github.com/docker/docker/hack/make/binary-client b/cli/vendor/github.com/docker/docker/hack/make/binary-client similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/binary-client rename to cli/vendor/github.com/docker/docker/hack/make/binary-client diff --git a/fn/vendor/github.com/docker/docker/hack/make/binary-daemon b/cli/vendor/github.com/docker/docker/hack/make/binary-daemon similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/binary-daemon rename to cli/vendor/github.com/docker/docker/hack/make/binary-daemon diff --git a/fn/vendor/github.com/docker/docker/hack/make/build-deb b/cli/vendor/github.com/docker/docker/hack/make/build-deb similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/build-deb rename to cli/vendor/github.com/docker/docker/hack/make/build-deb diff --git a/fn/vendor/github.com/docker/docker/hack/make/build-integration-test-binary b/cli/vendor/github.com/docker/docker/hack/make/build-integration-test-binary similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/build-integration-test-binary rename to cli/vendor/github.com/docker/docker/hack/make/build-integration-test-binary diff --git a/fn/vendor/github.com/docker/docker/hack/make/build-rpm b/cli/vendor/github.com/docker/docker/hack/make/build-rpm similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/build-rpm rename to cli/vendor/github.com/docker/docker/hack/make/build-rpm diff --git a/fn/vendor/github.com/docker/docker/hack/make/clean-apt-repo b/cli/vendor/github.com/docker/docker/hack/make/clean-apt-repo similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/clean-apt-repo rename to cli/vendor/github.com/docker/docker/hack/make/clean-apt-repo diff --git a/fn/vendor/github.com/docker/docker/hack/make/clean-yum-repo b/cli/vendor/github.com/docker/docker/hack/make/clean-yum-repo similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/clean-yum-repo rename to cli/vendor/github.com/docker/docker/hack/make/clean-yum-repo diff --git a/fn/vendor/github.com/docker/docker/hack/make/cover b/cli/vendor/github.com/docker/docker/hack/make/cover similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/cover rename to cli/vendor/github.com/docker/docker/hack/make/cover diff --git a/fn/vendor/github.com/docker/docker/hack/make/cross b/cli/vendor/github.com/docker/docker/hack/make/cross similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/cross rename to cli/vendor/github.com/docker/docker/hack/make/cross diff --git a/fn/vendor/github.com/docker/docker/hack/make/dynbinary b/cli/vendor/github.com/docker/docker/hack/make/dynbinary similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/dynbinary rename to cli/vendor/github.com/docker/docker/hack/make/dynbinary diff --git a/fn/vendor/github.com/docker/docker/hack/make/dynbinary-client b/cli/vendor/github.com/docker/docker/hack/make/dynbinary-client similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/dynbinary-client rename to cli/vendor/github.com/docker/docker/hack/make/dynbinary-client diff --git a/fn/vendor/github.com/docker/docker/hack/make/dynbinary-daemon b/cli/vendor/github.com/docker/docker/hack/make/dynbinary-daemon similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/dynbinary-daemon rename to cli/vendor/github.com/docker/docker/hack/make/dynbinary-daemon diff --git a/fn/vendor/github.com/docker/docker/hack/make/generate-index-listing b/cli/vendor/github.com/docker/docker/hack/make/generate-index-listing similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/generate-index-listing rename to cli/vendor/github.com/docker/docker/hack/make/generate-index-listing diff --git a/fn/vendor/github.com/docker/docker/hack/make/install-binary b/cli/vendor/github.com/docker/docker/hack/make/install-binary similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/install-binary rename to cli/vendor/github.com/docker/docker/hack/make/install-binary diff --git a/fn/vendor/github.com/docker/docker/hack/make/install-binary-client b/cli/vendor/github.com/docker/docker/hack/make/install-binary-client similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/install-binary-client rename to cli/vendor/github.com/docker/docker/hack/make/install-binary-client diff --git a/fn/vendor/github.com/docker/docker/hack/make/install-binary-daemon b/cli/vendor/github.com/docker/docker/hack/make/install-binary-daemon similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/install-binary-daemon rename to cli/vendor/github.com/docker/docker/hack/make/install-binary-daemon diff --git a/fn/vendor/github.com/docker/docker/hack/make/install-script b/cli/vendor/github.com/docker/docker/hack/make/install-script similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/install-script rename to cli/vendor/github.com/docker/docker/hack/make/install-script diff --git a/fn/vendor/github.com/docker/docker/hack/make/release-deb b/cli/vendor/github.com/docker/docker/hack/make/release-deb similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/release-deb rename to cli/vendor/github.com/docker/docker/hack/make/release-deb diff --git a/fn/vendor/github.com/docker/docker/hack/make/release-rpm b/cli/vendor/github.com/docker/docker/hack/make/release-rpm similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/release-rpm rename to cli/vendor/github.com/docker/docker/hack/make/release-rpm diff --git a/fn/vendor/github.com/docker/docker/hack/make/run b/cli/vendor/github.com/docker/docker/hack/make/run similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/run rename to cli/vendor/github.com/docker/docker/hack/make/run diff --git a/fn/vendor/github.com/docker/docker/hack/make/sign-repos b/cli/vendor/github.com/docker/docker/hack/make/sign-repos similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/sign-repos rename to cli/vendor/github.com/docker/docker/hack/make/sign-repos diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-deb-install b/cli/vendor/github.com/docker/docker/hack/make/test-deb-install similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-deb-install rename to cli/vendor/github.com/docker/docker/hack/make/test-deb-install diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-docker-py b/cli/vendor/github.com/docker/docker/hack/make/test-docker-py similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-docker-py rename to cli/vendor/github.com/docker/docker/hack/make/test-docker-py diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-install-script b/cli/vendor/github.com/docker/docker/hack/make/test-install-script similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-install-script rename to cli/vendor/github.com/docker/docker/hack/make/test-install-script diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-integration-cli b/cli/vendor/github.com/docker/docker/hack/make/test-integration-cli similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-integration-cli rename to cli/vendor/github.com/docker/docker/hack/make/test-integration-cli diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-integration-shell b/cli/vendor/github.com/docker/docker/hack/make/test-integration-shell similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-integration-shell rename to cli/vendor/github.com/docker/docker/hack/make/test-integration-shell diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-old-apt-repo b/cli/vendor/github.com/docker/docker/hack/make/test-old-apt-repo similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-old-apt-repo rename to cli/vendor/github.com/docker/docker/hack/make/test-old-apt-repo diff --git a/fn/vendor/github.com/docker/docker/hack/make/test-unit b/cli/vendor/github.com/docker/docker/hack/make/test-unit similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/test-unit rename to cli/vendor/github.com/docker/docker/hack/make/test-unit diff --git a/fn/vendor/github.com/docker/docker/hack/make/tgz b/cli/vendor/github.com/docker/docker/hack/make/tgz similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/tgz rename to cli/vendor/github.com/docker/docker/hack/make/tgz diff --git a/fn/vendor/github.com/docker/docker/hack/make/ubuntu b/cli/vendor/github.com/docker/docker/hack/make/ubuntu similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/ubuntu rename to cli/vendor/github.com/docker/docker/hack/make/ubuntu diff --git a/fn/vendor/github.com/docker/docker/hack/make/update-apt-repo b/cli/vendor/github.com/docker/docker/hack/make/update-apt-repo similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/update-apt-repo rename to cli/vendor/github.com/docker/docker/hack/make/update-apt-repo diff --git a/fn/vendor/github.com/docker/docker/hack/make/win b/cli/vendor/github.com/docker/docker/hack/make/win similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/win rename to cli/vendor/github.com/docker/docker/hack/make/win diff --git a/fn/vendor/github.com/docker/docker/hack/make/yaml-docs-generator b/cli/vendor/github.com/docker/docker/hack/make/yaml-docs-generator similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/make/yaml-docs-generator rename to cli/vendor/github.com/docker/docker/hack/make/yaml-docs-generator diff --git a/fn/vendor/github.com/docker/docker/hack/release.sh b/cli/vendor/github.com/docker/docker/hack/release.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/release.sh rename to cli/vendor/github.com/docker/docker/hack/release.sh diff --git a/fn/vendor/github.com/docker/docker/hack/validate/.swagger-yamllint b/cli/vendor/github.com/docker/docker/hack/validate/.swagger-yamllint similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/.swagger-yamllint rename to cli/vendor/github.com/docker/docker/hack/validate/.swagger-yamllint diff --git a/fn/vendor/github.com/docker/docker/hack/validate/.validate b/cli/vendor/github.com/docker/docker/hack/validate/.validate similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/.validate rename to cli/vendor/github.com/docker/docker/hack/validate/.validate diff --git a/fn/vendor/github.com/docker/docker/hack/validate/all b/cli/vendor/github.com/docker/docker/hack/validate/all similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/all rename to cli/vendor/github.com/docker/docker/hack/validate/all diff --git a/fn/vendor/github.com/docker/docker/hack/validate/changelog-date-descending b/cli/vendor/github.com/docker/docker/hack/validate/changelog-date-descending similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/changelog-date-descending rename to cli/vendor/github.com/docker/docker/hack/validate/changelog-date-descending diff --git a/fn/vendor/github.com/docker/docker/hack/validate/changelog-well-formed b/cli/vendor/github.com/docker/docker/hack/validate/changelog-well-formed similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/changelog-well-formed rename to cli/vendor/github.com/docker/docker/hack/validate/changelog-well-formed diff --git a/fn/vendor/github.com/docker/docker/hack/validate/compose-bindata b/cli/vendor/github.com/docker/docker/hack/validate/compose-bindata similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/compose-bindata rename to cli/vendor/github.com/docker/docker/hack/validate/compose-bindata diff --git a/fn/vendor/github.com/docker/docker/hack/validate/dco b/cli/vendor/github.com/docker/docker/hack/validate/dco similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/dco rename to cli/vendor/github.com/docker/docker/hack/validate/dco diff --git a/fn/vendor/github.com/docker/docker/hack/validate/default b/cli/vendor/github.com/docker/docker/hack/validate/default similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/default rename to cli/vendor/github.com/docker/docker/hack/validate/default diff --git a/fn/vendor/github.com/docker/docker/hack/validate/default-seccomp b/cli/vendor/github.com/docker/docker/hack/validate/default-seccomp similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/default-seccomp rename to cli/vendor/github.com/docker/docker/hack/validate/default-seccomp diff --git a/fn/vendor/github.com/docker/docker/hack/validate/gofmt b/cli/vendor/github.com/docker/docker/hack/validate/gofmt similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/gofmt rename to cli/vendor/github.com/docker/docker/hack/validate/gofmt diff --git a/fn/vendor/github.com/docker/docker/hack/validate/lint b/cli/vendor/github.com/docker/docker/hack/validate/lint similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/lint rename to cli/vendor/github.com/docker/docker/hack/validate/lint diff --git a/fn/vendor/github.com/docker/docker/hack/validate/pkg-imports b/cli/vendor/github.com/docker/docker/hack/validate/pkg-imports similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/pkg-imports rename to cli/vendor/github.com/docker/docker/hack/validate/pkg-imports diff --git a/fn/vendor/github.com/docker/docker/hack/validate/swagger b/cli/vendor/github.com/docker/docker/hack/validate/swagger similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/swagger rename to cli/vendor/github.com/docker/docker/hack/validate/swagger diff --git a/fn/vendor/github.com/docker/docker/hack/validate/swagger-gen b/cli/vendor/github.com/docker/docker/hack/validate/swagger-gen similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/swagger-gen rename to cli/vendor/github.com/docker/docker/hack/validate/swagger-gen diff --git a/fn/vendor/github.com/docker/docker/hack/validate/test-imports b/cli/vendor/github.com/docker/docker/hack/validate/test-imports similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/test-imports rename to cli/vendor/github.com/docker/docker/hack/validate/test-imports diff --git a/fn/vendor/github.com/docker/docker/hack/validate/toml b/cli/vendor/github.com/docker/docker/hack/validate/toml similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/toml rename to cli/vendor/github.com/docker/docker/hack/validate/toml diff --git a/fn/vendor/github.com/docker/docker/hack/validate/vendor b/cli/vendor/github.com/docker/docker/hack/validate/vendor similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/vendor rename to cli/vendor/github.com/docker/docker/hack/validate/vendor diff --git a/fn/vendor/github.com/docker/docker/hack/validate/vet b/cli/vendor/github.com/docker/docker/hack/validate/vet similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/validate/vet rename to cli/vendor/github.com/docker/docker/hack/validate/vet diff --git a/fn/vendor/github.com/docker/docker/hack/vendor.sh b/cli/vendor/github.com/docker/docker/hack/vendor.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/hack/vendor.sh rename to cli/vendor/github.com/docker/docker/hack/vendor.sh diff --git a/fn/vendor/github.com/docker/docker/hooks/post_build b/cli/vendor/github.com/docker/docker/hooks/post_build similarity index 100% rename from fn/vendor/github.com/docker/docker/hooks/post_build rename to cli/vendor/github.com/docker/docker/hooks/post_build diff --git a/fn/vendor/github.com/docker/docker/image/cache/cache.go b/cli/vendor/github.com/docker/docker/image/cache/cache.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/cache/cache.go rename to cli/vendor/github.com/docker/docker/image/cache/cache.go diff --git a/fn/vendor/github.com/docker/docker/image/cache/compare.go b/cli/vendor/github.com/docker/docker/image/cache/compare.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/cache/compare.go rename to cli/vendor/github.com/docker/docker/image/cache/compare.go diff --git a/fn/vendor/github.com/docker/docker/image/cache/compare_test.go b/cli/vendor/github.com/docker/docker/image/cache/compare_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/cache/compare_test.go rename to cli/vendor/github.com/docker/docker/image/cache/compare_test.go diff --git a/fn/vendor/github.com/docker/docker/image/fs.go b/cli/vendor/github.com/docker/docker/image/fs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/fs.go rename to cli/vendor/github.com/docker/docker/image/fs.go diff --git a/fn/vendor/github.com/docker/docker/image/fs_test.go b/cli/vendor/github.com/docker/docker/image/fs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/fs_test.go rename to cli/vendor/github.com/docker/docker/image/fs_test.go diff --git a/fn/vendor/github.com/docker/docker/image/image.go b/cli/vendor/github.com/docker/docker/image/image.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/image.go rename to cli/vendor/github.com/docker/docker/image/image.go diff --git a/fn/vendor/github.com/docker/docker/image/image_test.go b/cli/vendor/github.com/docker/docker/image/image_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/image_test.go rename to cli/vendor/github.com/docker/docker/image/image_test.go diff --git a/fn/vendor/github.com/docker/docker/image/rootfs.go b/cli/vendor/github.com/docker/docker/image/rootfs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/rootfs.go rename to cli/vendor/github.com/docker/docker/image/rootfs.go diff --git a/fn/vendor/github.com/docker/docker/image/spec/v1.1.md b/cli/vendor/github.com/docker/docker/image/spec/v1.1.md similarity index 100% rename from fn/vendor/github.com/docker/docker/image/spec/v1.1.md rename to cli/vendor/github.com/docker/docker/image/spec/v1.1.md diff --git a/fn/vendor/github.com/docker/docker/image/spec/v1.2.md b/cli/vendor/github.com/docker/docker/image/spec/v1.2.md similarity index 100% rename from fn/vendor/github.com/docker/docker/image/spec/v1.2.md rename to cli/vendor/github.com/docker/docker/image/spec/v1.2.md diff --git a/fn/vendor/github.com/docker/docker/image/spec/v1.md b/cli/vendor/github.com/docker/docker/image/spec/v1.md similarity index 100% rename from fn/vendor/github.com/docker/docker/image/spec/v1.md rename to cli/vendor/github.com/docker/docker/image/spec/v1.md diff --git a/fn/vendor/github.com/docker/docker/image/store.go b/cli/vendor/github.com/docker/docker/image/store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/store.go rename to cli/vendor/github.com/docker/docker/image/store.go diff --git a/fn/vendor/github.com/docker/docker/image/store_test.go b/cli/vendor/github.com/docker/docker/image/store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/store_test.go rename to cli/vendor/github.com/docker/docker/image/store_test.go diff --git a/fn/vendor/github.com/docker/docker/image/tarexport/load.go b/cli/vendor/github.com/docker/docker/image/tarexport/load.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/tarexport/load.go rename to cli/vendor/github.com/docker/docker/image/tarexport/load.go diff --git a/fn/vendor/github.com/docker/docker/image/tarexport/save.go b/cli/vendor/github.com/docker/docker/image/tarexport/save.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/tarexport/save.go rename to cli/vendor/github.com/docker/docker/image/tarexport/save.go diff --git a/fn/vendor/github.com/docker/docker/image/tarexport/tarexport.go b/cli/vendor/github.com/docker/docker/image/tarexport/tarexport.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/tarexport/tarexport.go rename to cli/vendor/github.com/docker/docker/image/tarexport/tarexport.go diff --git a/fn/vendor/github.com/docker/docker/image/v1/imagev1.go b/cli/vendor/github.com/docker/docker/image/v1/imagev1.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/v1/imagev1.go rename to cli/vendor/github.com/docker/docker/image/v1/imagev1.go diff --git a/fn/vendor/github.com/docker/docker/image/v1/imagev1_test.go b/cli/vendor/github.com/docker/docker/image/v1/imagev1_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/image/v1/imagev1_test.go rename to cli/vendor/github.com/docker/docker/image/v1/imagev1_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/benchmark_test.go b/cli/vendor/github.com/docker/docker/integration-cli/benchmark_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/benchmark_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/benchmark_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/check_test.go b/cli/vendor/github.com/docker/docker/integration-cli/check_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/check_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/check_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/checker/checker.go b/cli/vendor/github.com/docker/docker/integration-cli/checker/checker.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/checker/checker.go rename to cli/vendor/github.com/docker/docker/integration-cli/checker/checker.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/cli/build/build.go b/cli/vendor/github.com/docker/docker/integration-cli/cli/build/build.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/cli/build/build.go rename to cli/vendor/github.com/docker/docker/integration-cli/cli/build/build.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/cli/cli.go b/cli/vendor/github.com/docker/docker/integration-cli/cli/cli.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/cli/cli.go rename to cli/vendor/github.com/docker/docker/integration-cli/cli/cli.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon.go b/cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon.go rename to cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon_swarm.go b/cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon_swarm.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon_swarm.go rename to cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon_swarm.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon_unix.go b/cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon_unix.go rename to cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon_unix.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon_windows.go b/cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/daemon/daemon_windows.go rename to cli/vendor/github.com/docker/docker/integration-cli/daemon/daemon_windows.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/daemon_swarm_hack_test.go b/cli/vendor/github.com/docker/docker/integration-cli/daemon_swarm_hack_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/daemon_swarm_hack_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/daemon_swarm_hack_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_attach_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_attach_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_attach_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_attach_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_auth_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_auth_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_auth_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_auth_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_build_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_build_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_build_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_build_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_containers_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_containers_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_containers_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_containers_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_create_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_create_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_create_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_events_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_events_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_events_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_events_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_exec_resize_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_exec_resize_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_exec_resize_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_exec_resize_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_exec_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_exec_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_exec_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_exec_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_images_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_images_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_images_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_images_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_info_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_info_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_info_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_info_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_inspect_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_logs_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_logs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_logs_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_logs_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_network_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_network_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_network_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_network_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_resize_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_resize_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_resize_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_resize_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_stats_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_stats_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_stats_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_stats_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_stats_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_stats_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_stats_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_stats_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_node_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_node_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_node_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_node_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_secret_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_secret_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_secret_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_secret_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_service_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_service_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_service_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_service_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_swarm_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_update_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_update_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_update_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_update_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_version_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_version_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_version_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_version_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_api_volumes_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_api_volumes_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_api_volumes_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_api_volumes_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_attach_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_plugin_v2_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_plugin_v2_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_plugin_v2_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_plugin_v2_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_authz_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_build_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_build_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_build_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_build_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_build_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_build_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_build_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_build_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_by_digest_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_by_digest_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_by_digest_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_by_digest_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_commit_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_commit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_commit_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_commit_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_config_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_config_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_config_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_config_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_from_container_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_from_container_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_from_container_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_from_container_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_to_container_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_utils.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_utils.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_cp_utils.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_create_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_create_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_create_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_create_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_create_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_create_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_create_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_plugins_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_plugins_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_plugins_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_plugins_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_daemon_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_diff_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_diff_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_diff_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_diff_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_events_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_events_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_events_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_events_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_events_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_events_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_events_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_events_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_exec_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_experimental_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_experimental_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_experimental_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_experimental_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_export_import_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_export_import_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_export_import_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_export_import_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_external_graphdriver_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_external_graphdriver_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_external_graphdriver_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_external_graphdriver_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_external_volume_driver_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_external_volume_driver_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_external_volume_driver_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_external_volume_driver_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_health_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_health_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_health_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_health_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_help_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_help_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_help_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_help_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_history_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_history_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_history_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_history_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_images_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_images_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_images_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_images_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_import_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_import_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_import_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_import_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_info_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_info_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_info_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_info_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_info_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_info_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_info_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_info_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_inspect_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_inspect_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_kill_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_kill_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_kill_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_kill_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_links_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_links_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_links_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_links_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_links_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_links_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_links_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_links_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_login_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_login_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_login_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_login_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_logout_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_logout_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_logout_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_logout_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_bench_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_bench_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_bench_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_bench_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_logs_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_nat_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_nat_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_nat_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_nat_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_netmode_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_netmode_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_netmode_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_netmode_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_network_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_network_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_network_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_network_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_oom_killed_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_oom_killed_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_oom_killed_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_oom_killed_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pause_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pause_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pause_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pause_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_logdriver_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_logdriver_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_logdriver_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_logdriver_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_plugins_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_port_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_port_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_port_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_port_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_proxy_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_proxy_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_proxy_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_proxy_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_prune_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_prune_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_prune_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_prune_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_ps_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_ps_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_ps_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_ps_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_local_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_local_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_local_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_local_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_trusted_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_trusted_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_trusted_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_pull_trusted_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_push_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_push_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_push_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_push_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_registry_user_agent_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_registry_user_agent_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_registry_user_agent_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_registry_user_agent_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_rename_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_rename_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_rename_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_rename_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_restart_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_restart_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_restart_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_restart_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_rm_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_rm_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_rm_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_rm_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_rmi_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_rmi_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_rmi_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_rmi_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_run_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_run_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_run_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_run_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_run_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_run_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_run_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_run_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_save_load_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_search_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_search_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_search_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_search_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_create_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_create_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_create_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_inspect_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_inspect_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_inspect_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_inspect_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_ls_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_ls_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_ls_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_secret_ls_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_create_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_create_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_create_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_create_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_health_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_health_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_health_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_health_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_logs_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_logs_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_logs_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_logs_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_scale_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_scale_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_scale_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_scale_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_update_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_service_update_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_service_update_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_sni_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_sni_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_sni_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_sni_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_stack_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_stack_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_stack_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_stack_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_start_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_start_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_start_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_start_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_stats_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_stats_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_stats_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_stats_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_stop_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_stop_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_stop_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_stop_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_swarm_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_tag_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_tag_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_tag_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_tag_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_top_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_top_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_top_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_top_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_update_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_update_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_update_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_update_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_update_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_update_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_update_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_update_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_userns_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_userns_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_userns_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_userns_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_v2_only_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_v2_only_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_v2_only_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_v2_only_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_version_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_version_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_version_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_version_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_volume_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_volume_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_volume_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_volume_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_cli_wait_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_cli_wait_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_cli_wait_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_cli_wait_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_deprecated_api_v124_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_experimental_network_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_experimental_network_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_experimental_network_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_experimental_network_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_hub_pull_suite_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_hub_pull_suite_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_hub_pull_suite_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_hub_pull_suite_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/docker_utils_test.go b/cli/vendor/github.com/docker/docker/integration-cli/docker_utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/docker_utils_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/docker_utils_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/environment/clean.go b/cli/vendor/github.com/docker/docker/integration-cli/environment/clean.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/environment/clean.go rename to cli/vendor/github.com/docker/docker/integration-cli/environment/clean.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/environment/environment.go b/cli/vendor/github.com/docker/docker/integration-cli/environment/environment.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/environment/environment.go rename to cli/vendor/github.com/docker/docker/integration-cli/environment/environment.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/environment/protect.go b/cli/vendor/github.com/docker/docker/integration-cli/environment/protect.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/environment/protect.go rename to cli/vendor/github.com/docker/docker/integration-cli/environment/protect.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/events_utils_test.go b/cli/vendor/github.com/docker/docker/integration-cli/events_utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/events_utils_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/events_utils_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/auth/docker-credential-shell-test b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/auth/docker-credential-shell-test similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/auth/docker-credential-shell-test rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/auth/docker-credential-shell-test diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/credentialspecs/valid.json b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/credentialspecs/valid.json similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/credentialspecs/valid.json rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/credentialspecs/valid.json diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/default.yaml b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/default.yaml similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/default.yaml rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/default.yaml diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/remove.yaml b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/remove.yaml similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/remove.yaml rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/remove.yaml diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/secrets.yaml b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/secrets.yaml similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/secrets.yaml rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/deploy/secrets.yaml diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/load/emptyLayer.tar b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/load/emptyLayer.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/load/emptyLayer.tar rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/load/emptyLayer.tar diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/load/frozen.go b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/load/frozen.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/load/frozen.go rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/load/frozen.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.crt b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.crt similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.crt rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.crt diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.key b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.key similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.key rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey1.key diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.crt b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.crt similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.crt rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.crt diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.key b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.key similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.key rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey2.key diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.crt b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.crt similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.crt rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.crt diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.key b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.key similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.key rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey3.key diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.crt b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.crt similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.crt rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.crt diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.key b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.key similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.key rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/delgkey4.key diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/gen.sh b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/gen.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/gen.sh rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/gen.sh diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.cert b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.cert similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.cert rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.cert diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.key b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.key similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.key rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/notary/localhost.key diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures/secrets/default b/cli/vendor/github.com/docker/docker/integration-cli/fixtures/secrets/default similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures/secrets/default rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures/secrets/default diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures_linux_daemon_test.go b/cli/vendor/github.com/docker/docker/integration-cli/fixtures_linux_daemon_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures_linux_daemon_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures_linux_daemon_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/fixtures_test.go b/cli/vendor/github.com/docker/docker/integration-cli/fixtures_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/fixtures_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/fixtures_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/registry/registry.go b/cli/vendor/github.com/docker/docker/integration-cli/registry/registry.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/registry/registry.go rename to cli/vendor/github.com/docker/docker/integration-cli/registry/registry.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/registry/registry_mock.go b/cli/vendor/github.com/docker/docker/integration-cli/registry/registry_mock.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/registry/registry_mock.go rename to cli/vendor/github.com/docker/docker/integration-cli/registry/registry_mock.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/registry/requirement.go b/cli/vendor/github.com/docker/docker/integration-cli/registry/requirement.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/registry/requirement.go rename to cli/vendor/github.com/docker/docker/integration-cli/registry/requirement.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/request/npipe.go b/cli/vendor/github.com/docker/docker/integration-cli/request/npipe.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/request/npipe.go rename to cli/vendor/github.com/docker/docker/integration-cli/request/npipe.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/request/npipe_windows.go b/cli/vendor/github.com/docker/docker/integration-cli/request/npipe_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/request/npipe_windows.go rename to cli/vendor/github.com/docker/docker/integration-cli/request/npipe_windows.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/request/request.go b/cli/vendor/github.com/docker/docker/integration-cli/request/request.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/request/request.go rename to cli/vendor/github.com/docker/docker/integration-cli/request/request.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/requirement/requirement.go b/cli/vendor/github.com/docker/docker/integration-cli/requirement/requirement.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/requirement/requirement.go rename to cli/vendor/github.com/docker/docker/integration-cli/requirement/requirement.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/requirements_test.go b/cli/vendor/github.com/docker/docker/integration-cli/requirements_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/requirements_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/requirements_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/requirements_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/requirements_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/requirements_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/requirements_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_exec_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_exec_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_exec_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_exec_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_noexec_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_noexec_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_noexec_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_noexec_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_noseccomp_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_noseccomp_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_noseccomp_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_noseccomp_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_seccomp_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_seccomp_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_seccomp_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_seccomp_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_unix_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_unix_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/test_vars_windows_test.go b/cli/vendor/github.com/docker/docker/integration-cli/test_vars_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/test_vars_windows_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/test_vars_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/trust_server_test.go b/cli/vendor/github.com/docker/docker/integration-cli/trust_server_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/trust_server_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/trust_server_test.go diff --git a/fn/vendor/github.com/docker/docker/integration-cli/utils_test.go b/cli/vendor/github.com/docker/docker/integration-cli/utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/integration-cli/utils_test.go rename to cli/vendor/github.com/docker/docker/integration-cli/utils_test.go diff --git a/fn/vendor/github.com/docker/docker/keys/launchpad-ppa-zfs.asc b/cli/vendor/github.com/docker/docker/keys/launchpad-ppa-zfs.asc similarity index 100% rename from fn/vendor/github.com/docker/docker/keys/launchpad-ppa-zfs.asc rename to cli/vendor/github.com/docker/docker/keys/launchpad-ppa-zfs.asc diff --git a/fn/vendor/github.com/docker/docker/layer/empty.go b/cli/vendor/github.com/docker/docker/layer/empty.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/empty.go rename to cli/vendor/github.com/docker/docker/layer/empty.go diff --git a/fn/vendor/github.com/docker/docker/layer/empty_test.go b/cli/vendor/github.com/docker/docker/layer/empty_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/empty_test.go rename to cli/vendor/github.com/docker/docker/layer/empty_test.go diff --git a/fn/vendor/github.com/docker/docker/layer/filestore.go b/cli/vendor/github.com/docker/docker/layer/filestore.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/filestore.go rename to cli/vendor/github.com/docker/docker/layer/filestore.go diff --git a/fn/vendor/github.com/docker/docker/layer/filestore_test.go b/cli/vendor/github.com/docker/docker/layer/filestore_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/filestore_test.go rename to cli/vendor/github.com/docker/docker/layer/filestore_test.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer.go b/cli/vendor/github.com/docker/docker/layer/layer.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer.go rename to cli/vendor/github.com/docker/docker/layer/layer.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer_store.go b/cli/vendor/github.com/docker/docker/layer/layer_store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer_store.go rename to cli/vendor/github.com/docker/docker/layer/layer_store.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer_store_windows.go b/cli/vendor/github.com/docker/docker/layer/layer_store_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer_store_windows.go rename to cli/vendor/github.com/docker/docker/layer/layer_store_windows.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer_test.go b/cli/vendor/github.com/docker/docker/layer/layer_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer_test.go rename to cli/vendor/github.com/docker/docker/layer/layer_test.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer_unix.go b/cli/vendor/github.com/docker/docker/layer/layer_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer_unix.go rename to cli/vendor/github.com/docker/docker/layer/layer_unix.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer_unix_test.go b/cli/vendor/github.com/docker/docker/layer/layer_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer_unix_test.go rename to cli/vendor/github.com/docker/docker/layer/layer_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/layer/layer_windows.go b/cli/vendor/github.com/docker/docker/layer/layer_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/layer_windows.go rename to cli/vendor/github.com/docker/docker/layer/layer_windows.go diff --git a/fn/vendor/github.com/docker/docker/layer/migration.go b/cli/vendor/github.com/docker/docker/layer/migration.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/migration.go rename to cli/vendor/github.com/docker/docker/layer/migration.go diff --git a/fn/vendor/github.com/docker/docker/layer/migration_test.go b/cli/vendor/github.com/docker/docker/layer/migration_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/migration_test.go rename to cli/vendor/github.com/docker/docker/layer/migration_test.go diff --git a/fn/vendor/github.com/docker/docker/layer/mount_test.go b/cli/vendor/github.com/docker/docker/layer/mount_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/mount_test.go rename to cli/vendor/github.com/docker/docker/layer/mount_test.go diff --git a/fn/vendor/github.com/docker/docker/layer/mounted_layer.go b/cli/vendor/github.com/docker/docker/layer/mounted_layer.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/mounted_layer.go rename to cli/vendor/github.com/docker/docker/layer/mounted_layer.go diff --git a/fn/vendor/github.com/docker/docker/layer/ro_layer.go b/cli/vendor/github.com/docker/docker/layer/ro_layer.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/ro_layer.go rename to cli/vendor/github.com/docker/docker/layer/ro_layer.go diff --git a/fn/vendor/github.com/docker/docker/layer/ro_layer_windows.go b/cli/vendor/github.com/docker/docker/layer/ro_layer_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/layer/ro_layer_windows.go rename to cli/vendor/github.com/docker/docker/layer/ro_layer_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/client.go b/cli/vendor/github.com/docker/docker/libcontainerd/client.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/client.go rename to cli/vendor/github.com/docker/docker/libcontainerd/client.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/client_linux.go b/cli/vendor/github.com/docker/docker/libcontainerd/client_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/client_linux.go rename to cli/vendor/github.com/docker/docker/libcontainerd/client_linux.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/client_solaris.go b/cli/vendor/github.com/docker/docker/libcontainerd/client_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/client_solaris.go rename to cli/vendor/github.com/docker/docker/libcontainerd/client_solaris.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/client_unix.go b/cli/vendor/github.com/docker/docker/libcontainerd/client_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/client_unix.go rename to cli/vendor/github.com/docker/docker/libcontainerd/client_unix.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/client_windows.go b/cli/vendor/github.com/docker/docker/libcontainerd/client_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/client_windows.go rename to cli/vendor/github.com/docker/docker/libcontainerd/client_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/container.go b/cli/vendor/github.com/docker/docker/libcontainerd/container.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/container.go rename to cli/vendor/github.com/docker/docker/libcontainerd/container.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/container_unix.go b/cli/vendor/github.com/docker/docker/libcontainerd/container_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/container_unix.go rename to cli/vendor/github.com/docker/docker/libcontainerd/container_unix.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/container_windows.go b/cli/vendor/github.com/docker/docker/libcontainerd/container_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/container_windows.go rename to cli/vendor/github.com/docker/docker/libcontainerd/container_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/oom_linux.go b/cli/vendor/github.com/docker/docker/libcontainerd/oom_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/oom_linux.go rename to cli/vendor/github.com/docker/docker/libcontainerd/oom_linux.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/oom_solaris.go b/cli/vendor/github.com/docker/docker/libcontainerd/oom_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/oom_solaris.go rename to cli/vendor/github.com/docker/docker/libcontainerd/oom_solaris.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/pausemonitor_unix.go b/cli/vendor/github.com/docker/docker/libcontainerd/pausemonitor_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/pausemonitor_unix.go rename to cli/vendor/github.com/docker/docker/libcontainerd/pausemonitor_unix.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/process.go b/cli/vendor/github.com/docker/docker/libcontainerd/process.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/process.go rename to cli/vendor/github.com/docker/docker/libcontainerd/process.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/process_unix.go b/cli/vendor/github.com/docker/docker/libcontainerd/process_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/process_unix.go rename to cli/vendor/github.com/docker/docker/libcontainerd/process_unix.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/process_windows.go b/cli/vendor/github.com/docker/docker/libcontainerd/process_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/process_windows.go rename to cli/vendor/github.com/docker/docker/libcontainerd/process_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/queue_unix.go b/cli/vendor/github.com/docker/docker/libcontainerd/queue_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/queue_unix.go rename to cli/vendor/github.com/docker/docker/libcontainerd/queue_unix.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/remote.go b/cli/vendor/github.com/docker/docker/libcontainerd/remote.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/remote.go rename to cli/vendor/github.com/docker/docker/libcontainerd/remote.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/remote_unix.go b/cli/vendor/github.com/docker/docker/libcontainerd/remote_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/remote_unix.go rename to cli/vendor/github.com/docker/docker/libcontainerd/remote_unix.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/remote_windows.go b/cli/vendor/github.com/docker/docker/libcontainerd/remote_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/remote_windows.go rename to cli/vendor/github.com/docker/docker/libcontainerd/remote_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/types.go b/cli/vendor/github.com/docker/docker/libcontainerd/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/types.go rename to cli/vendor/github.com/docker/docker/libcontainerd/types.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/types_linux.go b/cli/vendor/github.com/docker/docker/libcontainerd/types_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/types_linux.go rename to cli/vendor/github.com/docker/docker/libcontainerd/types_linux.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/types_solaris.go b/cli/vendor/github.com/docker/docker/libcontainerd/types_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/types_solaris.go rename to cli/vendor/github.com/docker/docker/libcontainerd/types_solaris.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/types_windows.go b/cli/vendor/github.com/docker/docker/libcontainerd/types_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/types_windows.go rename to cli/vendor/github.com/docker/docker/libcontainerd/types_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/utils_linux.go b/cli/vendor/github.com/docker/docker/libcontainerd/utils_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/utils_linux.go rename to cli/vendor/github.com/docker/docker/libcontainerd/utils_linux.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/utils_solaris.go b/cli/vendor/github.com/docker/docker/libcontainerd/utils_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/utils_solaris.go rename to cli/vendor/github.com/docker/docker/libcontainerd/utils_solaris.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/utils_windows.go b/cli/vendor/github.com/docker/docker/libcontainerd/utils_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/utils_windows.go rename to cli/vendor/github.com/docker/docker/libcontainerd/utils_windows.go diff --git a/fn/vendor/github.com/docker/docker/libcontainerd/utils_windows_test.go b/cli/vendor/github.com/docker/docker/libcontainerd/utils_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/libcontainerd/utils_windows_test.go rename to cli/vendor/github.com/docker/docker/libcontainerd/utils_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/man/Dockerfile b/cli/vendor/github.com/docker/docker/man/Dockerfile similarity index 100% rename from fn/vendor/github.com/docker/docker/man/Dockerfile rename to cli/vendor/github.com/docker/docker/man/Dockerfile diff --git a/fn/vendor/github.com/docker/docker/man/Dockerfile.5.md b/cli/vendor/github.com/docker/docker/man/Dockerfile.5.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/Dockerfile.5.md rename to cli/vendor/github.com/docker/docker/man/Dockerfile.5.md diff --git a/fn/vendor/github.com/docker/docker/man/Dockerfile.aarch64 b/cli/vendor/github.com/docker/docker/man/Dockerfile.aarch64 similarity index 100% rename from fn/vendor/github.com/docker/docker/man/Dockerfile.aarch64 rename to cli/vendor/github.com/docker/docker/man/Dockerfile.aarch64 diff --git a/fn/vendor/github.com/docker/docker/man/Dockerfile.armhf b/cli/vendor/github.com/docker/docker/man/Dockerfile.armhf similarity index 100% rename from fn/vendor/github.com/docker/docker/man/Dockerfile.armhf rename to cli/vendor/github.com/docker/docker/man/Dockerfile.armhf diff --git a/fn/vendor/github.com/docker/docker/man/Dockerfile.ppc64le b/cli/vendor/github.com/docker/docker/man/Dockerfile.ppc64le similarity index 100% rename from fn/vendor/github.com/docker/docker/man/Dockerfile.ppc64le rename to cli/vendor/github.com/docker/docker/man/Dockerfile.ppc64le diff --git a/fn/vendor/github.com/docker/docker/man/Dockerfile.s390x b/cli/vendor/github.com/docker/docker/man/Dockerfile.s390x similarity index 100% rename from fn/vendor/github.com/docker/docker/man/Dockerfile.s390x rename to cli/vendor/github.com/docker/docker/man/Dockerfile.s390x diff --git a/fn/vendor/github.com/docker/docker/man/README.md b/cli/vendor/github.com/docker/docker/man/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/README.md rename to cli/vendor/github.com/docker/docker/man/README.md diff --git a/fn/vendor/github.com/docker/docker/man/docker-build.1.md b/cli/vendor/github.com/docker/docker/man/docker-build.1.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/docker-build.1.md rename to cli/vendor/github.com/docker/docker/man/docker-build.1.md diff --git a/fn/vendor/github.com/docker/docker/man/docker-config-json.5.md b/cli/vendor/github.com/docker/docker/man/docker-config-json.5.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/docker-config-json.5.md rename to cli/vendor/github.com/docker/docker/man/docker-config-json.5.md diff --git a/fn/vendor/github.com/docker/docker/man/docker-run.1.md b/cli/vendor/github.com/docker/docker/man/docker-run.1.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/docker-run.1.md rename to cli/vendor/github.com/docker/docker/man/docker-run.1.md diff --git a/fn/vendor/github.com/docker/docker/man/docker.1.md b/cli/vendor/github.com/docker/docker/man/docker.1.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/docker.1.md rename to cli/vendor/github.com/docker/docker/man/docker.1.md diff --git a/fn/vendor/github.com/docker/docker/man/dockerd.8.md b/cli/vendor/github.com/docker/docker/man/dockerd.8.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/dockerd.8.md rename to cli/vendor/github.com/docker/docker/man/dockerd.8.md diff --git a/fn/vendor/github.com/docker/docker/man/generate.go b/cli/vendor/github.com/docker/docker/man/generate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/man/generate.go rename to cli/vendor/github.com/docker/docker/man/generate.go diff --git a/fn/vendor/github.com/docker/docker/man/generate.sh b/cli/vendor/github.com/docker/docker/man/generate.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/man/generate.sh rename to cli/vendor/github.com/docker/docker/man/generate.sh diff --git a/fn/vendor/github.com/docker/docker/man/glide.lock b/cli/vendor/github.com/docker/docker/man/glide.lock similarity index 100% rename from fn/vendor/github.com/docker/docker/man/glide.lock rename to cli/vendor/github.com/docker/docker/man/glide.lock diff --git a/fn/vendor/github.com/docker/docker/man/glide.yaml b/cli/vendor/github.com/docker/docker/man/glide.yaml similarity index 100% rename from fn/vendor/github.com/docker/docker/man/glide.yaml rename to cli/vendor/github.com/docker/docker/man/glide.yaml diff --git a/fn/vendor/github.com/docker/docker/man/md2man-all.sh b/cli/vendor/github.com/docker/docker/man/md2man-all.sh similarity index 100% rename from fn/vendor/github.com/docker/docker/man/md2man-all.sh rename to cli/vendor/github.com/docker/docker/man/md2man-all.sh diff --git a/fn/vendor/github.com/docker/docker/man/src/attach.md b/cli/vendor/github.com/docker/docker/man/src/attach.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/attach.md rename to cli/vendor/github.com/docker/docker/man/src/attach.md diff --git a/fn/vendor/github.com/docker/docker/man/src/commit.md b/cli/vendor/github.com/docker/docker/man/src/commit.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/commit.md rename to cli/vendor/github.com/docker/docker/man/src/commit.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/attach.md b/cli/vendor/github.com/docker/docker/man/src/container/attach.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/attach.md rename to cli/vendor/github.com/docker/docker/man/src/container/attach.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/commit.md b/cli/vendor/github.com/docker/docker/man/src/container/commit.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/commit.md rename to cli/vendor/github.com/docker/docker/man/src/container/commit.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/cp.md b/cli/vendor/github.com/docker/docker/man/src/container/cp.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/cp.md rename to cli/vendor/github.com/docker/docker/man/src/container/cp.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/create-example.md b/cli/vendor/github.com/docker/docker/man/src/container/create-example.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/create-example.md rename to cli/vendor/github.com/docker/docker/man/src/container/create-example.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/create.md b/cli/vendor/github.com/docker/docker/man/src/container/create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/create.md rename to cli/vendor/github.com/docker/docker/man/src/container/create.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/diff.md b/cli/vendor/github.com/docker/docker/man/src/container/diff.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/diff.md rename to cli/vendor/github.com/docker/docker/man/src/container/diff.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/exec.md b/cli/vendor/github.com/docker/docker/man/src/container/exec.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/exec.md rename to cli/vendor/github.com/docker/docker/man/src/container/exec.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/export.md b/cli/vendor/github.com/docker/docker/man/src/container/export.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/export.md rename to cli/vendor/github.com/docker/docker/man/src/container/export.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/kill.md b/cli/vendor/github.com/docker/docker/man/src/container/kill.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/kill.md rename to cli/vendor/github.com/docker/docker/man/src/container/kill.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/logs.md b/cli/vendor/github.com/docker/docker/man/src/container/logs.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/logs.md rename to cli/vendor/github.com/docker/docker/man/src/container/logs.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/ls.md b/cli/vendor/github.com/docker/docker/man/src/container/ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/ls.md rename to cli/vendor/github.com/docker/docker/man/src/container/ls.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/pause.md b/cli/vendor/github.com/docker/docker/man/src/container/pause.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/pause.md rename to cli/vendor/github.com/docker/docker/man/src/container/pause.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/port.md b/cli/vendor/github.com/docker/docker/man/src/container/port.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/port.md rename to cli/vendor/github.com/docker/docker/man/src/container/port.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/rename.md b/cli/vendor/github.com/docker/docker/man/src/container/rename.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/rename.md rename to cli/vendor/github.com/docker/docker/man/src/container/rename.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/restart.md b/cli/vendor/github.com/docker/docker/man/src/container/restart.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/restart.md rename to cli/vendor/github.com/docker/docker/man/src/container/restart.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/rm.md b/cli/vendor/github.com/docker/docker/man/src/container/rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/rm.md rename to cli/vendor/github.com/docker/docker/man/src/container/rm.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/run.md b/cli/vendor/github.com/docker/docker/man/src/container/run.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/run.md rename to cli/vendor/github.com/docker/docker/man/src/container/run.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/start.md b/cli/vendor/github.com/docker/docker/man/src/container/start.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/start.md rename to cli/vendor/github.com/docker/docker/man/src/container/start.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/stats.md b/cli/vendor/github.com/docker/docker/man/src/container/stats.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/stats.md rename to cli/vendor/github.com/docker/docker/man/src/container/stats.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/stop.md b/cli/vendor/github.com/docker/docker/man/src/container/stop.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/stop.md rename to cli/vendor/github.com/docker/docker/man/src/container/stop.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/top.md b/cli/vendor/github.com/docker/docker/man/src/container/top.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/top.md rename to cli/vendor/github.com/docker/docker/man/src/container/top.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/unpause.md b/cli/vendor/github.com/docker/docker/man/src/container/unpause.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/unpause.md rename to cli/vendor/github.com/docker/docker/man/src/container/unpause.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/update.md b/cli/vendor/github.com/docker/docker/man/src/container/update.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/update.md rename to cli/vendor/github.com/docker/docker/man/src/container/update.md diff --git a/fn/vendor/github.com/docker/docker/man/src/container/wait.md b/cli/vendor/github.com/docker/docker/man/src/container/wait.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/container/wait.md rename to cli/vendor/github.com/docker/docker/man/src/container/wait.md diff --git a/fn/vendor/github.com/docker/docker/man/src/cp.md b/cli/vendor/github.com/docker/docker/man/src/cp.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/cp.md rename to cli/vendor/github.com/docker/docker/man/src/cp.md diff --git a/fn/vendor/github.com/docker/docker/man/src/create.md b/cli/vendor/github.com/docker/docker/man/src/create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/create.md rename to cli/vendor/github.com/docker/docker/man/src/create.md diff --git a/fn/vendor/github.com/docker/docker/man/src/diff.md b/cli/vendor/github.com/docker/docker/man/src/diff.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/diff.md rename to cli/vendor/github.com/docker/docker/man/src/diff.md diff --git a/fn/vendor/github.com/docker/docker/man/src/events.md b/cli/vendor/github.com/docker/docker/man/src/events.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/events.md rename to cli/vendor/github.com/docker/docker/man/src/events.md diff --git a/fn/vendor/github.com/docker/docker/man/src/exec.md b/cli/vendor/github.com/docker/docker/man/src/exec.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/exec.md rename to cli/vendor/github.com/docker/docker/man/src/exec.md diff --git a/fn/vendor/github.com/docker/docker/man/src/export.md b/cli/vendor/github.com/docker/docker/man/src/export.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/export.md rename to cli/vendor/github.com/docker/docker/man/src/export.md diff --git a/fn/vendor/github.com/docker/docker/man/src/history.md b/cli/vendor/github.com/docker/docker/man/src/history.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/history.md rename to cli/vendor/github.com/docker/docker/man/src/history.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/build.md b/cli/vendor/github.com/docker/docker/man/src/image/build.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/build.md rename to cli/vendor/github.com/docker/docker/man/src/image/build.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/history.md b/cli/vendor/github.com/docker/docker/man/src/image/history.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/history.md rename to cli/vendor/github.com/docker/docker/man/src/image/history.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/import.md b/cli/vendor/github.com/docker/docker/man/src/image/import.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/import.md rename to cli/vendor/github.com/docker/docker/man/src/image/import.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/load.md b/cli/vendor/github.com/docker/docker/man/src/image/load.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/load.md rename to cli/vendor/github.com/docker/docker/man/src/image/load.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/ls.md b/cli/vendor/github.com/docker/docker/man/src/image/ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/ls.md rename to cli/vendor/github.com/docker/docker/man/src/image/ls.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/pull.md b/cli/vendor/github.com/docker/docker/man/src/image/pull.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/pull.md rename to cli/vendor/github.com/docker/docker/man/src/image/pull.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/push.md b/cli/vendor/github.com/docker/docker/man/src/image/push.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/push.md rename to cli/vendor/github.com/docker/docker/man/src/image/push.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/rm.md b/cli/vendor/github.com/docker/docker/man/src/image/rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/rm.md rename to cli/vendor/github.com/docker/docker/man/src/image/rm.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/save.md b/cli/vendor/github.com/docker/docker/man/src/image/save.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/save.md rename to cli/vendor/github.com/docker/docker/man/src/image/save.md diff --git a/fn/vendor/github.com/docker/docker/man/src/image/tag.md b/cli/vendor/github.com/docker/docker/man/src/image/tag.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/image/tag.md rename to cli/vendor/github.com/docker/docker/man/src/image/tag.md diff --git a/fn/vendor/github.com/docker/docker/man/src/images.md b/cli/vendor/github.com/docker/docker/man/src/images.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/images.md rename to cli/vendor/github.com/docker/docker/man/src/images.md diff --git a/fn/vendor/github.com/docker/docker/man/src/import.md b/cli/vendor/github.com/docker/docker/man/src/import.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/import.md rename to cli/vendor/github.com/docker/docker/man/src/import.md diff --git a/fn/vendor/github.com/docker/docker/man/src/info.md b/cli/vendor/github.com/docker/docker/man/src/info.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/info.md rename to cli/vendor/github.com/docker/docker/man/src/info.md diff --git a/fn/vendor/github.com/docker/docker/man/src/inspect.md b/cli/vendor/github.com/docker/docker/man/src/inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/inspect.md rename to cli/vendor/github.com/docker/docker/man/src/inspect.md diff --git a/fn/vendor/github.com/docker/docker/man/src/kill.md b/cli/vendor/github.com/docker/docker/man/src/kill.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/kill.md rename to cli/vendor/github.com/docker/docker/man/src/kill.md diff --git a/fn/vendor/github.com/docker/docker/man/src/load.md b/cli/vendor/github.com/docker/docker/man/src/load.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/load.md rename to cli/vendor/github.com/docker/docker/man/src/load.md diff --git a/fn/vendor/github.com/docker/docker/man/src/login.md b/cli/vendor/github.com/docker/docker/man/src/login.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/login.md rename to cli/vendor/github.com/docker/docker/man/src/login.md diff --git a/fn/vendor/github.com/docker/docker/man/src/logout.md b/cli/vendor/github.com/docker/docker/man/src/logout.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/logout.md rename to cli/vendor/github.com/docker/docker/man/src/logout.md diff --git a/fn/vendor/github.com/docker/docker/man/src/logs.md b/cli/vendor/github.com/docker/docker/man/src/logs.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/logs.md rename to cli/vendor/github.com/docker/docker/man/src/logs.md diff --git a/fn/vendor/github.com/docker/docker/man/src/network/connect.md b/cli/vendor/github.com/docker/docker/man/src/network/connect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/network/connect.md rename to cli/vendor/github.com/docker/docker/man/src/network/connect.md diff --git a/fn/vendor/github.com/docker/docker/man/src/network/create.md b/cli/vendor/github.com/docker/docker/man/src/network/create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/network/create.md rename to cli/vendor/github.com/docker/docker/man/src/network/create.md diff --git a/fn/vendor/github.com/docker/docker/man/src/network/disconnect.md b/cli/vendor/github.com/docker/docker/man/src/network/disconnect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/network/disconnect.md rename to cli/vendor/github.com/docker/docker/man/src/network/disconnect.md diff --git a/fn/vendor/github.com/docker/docker/man/src/network/inspect.md b/cli/vendor/github.com/docker/docker/man/src/network/inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/network/inspect.md rename to cli/vendor/github.com/docker/docker/man/src/network/inspect.md diff --git a/fn/vendor/github.com/docker/docker/man/src/network/ls.md b/cli/vendor/github.com/docker/docker/man/src/network/ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/network/ls.md rename to cli/vendor/github.com/docker/docker/man/src/network/ls.md diff --git a/fn/vendor/github.com/docker/docker/man/src/network/rm.md b/cli/vendor/github.com/docker/docker/man/src/network/rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/network/rm.md rename to cli/vendor/github.com/docker/docker/man/src/network/rm.md diff --git a/fn/vendor/github.com/docker/docker/man/src/pause.md b/cli/vendor/github.com/docker/docker/man/src/pause.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/pause.md rename to cli/vendor/github.com/docker/docker/man/src/pause.md diff --git a/fn/vendor/github.com/docker/docker/man/src/plugin/ls.md b/cli/vendor/github.com/docker/docker/man/src/plugin/ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/plugin/ls.md rename to cli/vendor/github.com/docker/docker/man/src/plugin/ls.md diff --git a/fn/vendor/github.com/docker/docker/man/src/port.md b/cli/vendor/github.com/docker/docker/man/src/port.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/port.md rename to cli/vendor/github.com/docker/docker/man/src/port.md diff --git a/fn/vendor/github.com/docker/docker/man/src/ps.md b/cli/vendor/github.com/docker/docker/man/src/ps.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/ps.md rename to cli/vendor/github.com/docker/docker/man/src/ps.md diff --git a/fn/vendor/github.com/docker/docker/man/src/pull.md b/cli/vendor/github.com/docker/docker/man/src/pull.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/pull.md rename to cli/vendor/github.com/docker/docker/man/src/pull.md diff --git a/fn/vendor/github.com/docker/docker/man/src/push.md b/cli/vendor/github.com/docker/docker/man/src/push.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/push.md rename to cli/vendor/github.com/docker/docker/man/src/push.md diff --git a/fn/vendor/github.com/docker/docker/man/src/rename.md b/cli/vendor/github.com/docker/docker/man/src/rename.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/rename.md rename to cli/vendor/github.com/docker/docker/man/src/rename.md diff --git a/fn/vendor/github.com/docker/docker/man/src/restart.md b/cli/vendor/github.com/docker/docker/man/src/restart.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/restart.md rename to cli/vendor/github.com/docker/docker/man/src/restart.md diff --git a/fn/vendor/github.com/docker/docker/man/src/rm.md b/cli/vendor/github.com/docker/docker/man/src/rm.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/rm.md rename to cli/vendor/github.com/docker/docker/man/src/rm.md diff --git a/fn/vendor/github.com/docker/docker/man/src/rmi.md b/cli/vendor/github.com/docker/docker/man/src/rmi.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/rmi.md rename to cli/vendor/github.com/docker/docker/man/src/rmi.md diff --git a/fn/vendor/github.com/docker/docker/man/src/save.md b/cli/vendor/github.com/docker/docker/man/src/save.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/save.md rename to cli/vendor/github.com/docker/docker/man/src/save.md diff --git a/fn/vendor/github.com/docker/docker/man/src/search.md b/cli/vendor/github.com/docker/docker/man/src/search.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/search.md rename to cli/vendor/github.com/docker/docker/man/src/search.md diff --git a/fn/vendor/github.com/docker/docker/man/src/start.md b/cli/vendor/github.com/docker/docker/man/src/start.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/start.md rename to cli/vendor/github.com/docker/docker/man/src/start.md diff --git a/fn/vendor/github.com/docker/docker/man/src/stats.md b/cli/vendor/github.com/docker/docker/man/src/stats.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/stats.md rename to cli/vendor/github.com/docker/docker/man/src/stats.md diff --git a/fn/vendor/github.com/docker/docker/man/src/stop.md b/cli/vendor/github.com/docker/docker/man/src/stop.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/stop.md rename to cli/vendor/github.com/docker/docker/man/src/stop.md diff --git a/fn/vendor/github.com/docker/docker/man/src/system/events.md b/cli/vendor/github.com/docker/docker/man/src/system/events.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/system/events.md rename to cli/vendor/github.com/docker/docker/man/src/system/events.md diff --git a/fn/vendor/github.com/docker/docker/man/src/system/info.md b/cli/vendor/github.com/docker/docker/man/src/system/info.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/system/info.md rename to cli/vendor/github.com/docker/docker/man/src/system/info.md diff --git a/fn/vendor/github.com/docker/docker/man/src/tag.md b/cli/vendor/github.com/docker/docker/man/src/tag.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/tag.md rename to cli/vendor/github.com/docker/docker/man/src/tag.md diff --git a/fn/vendor/github.com/docker/docker/man/src/top.md b/cli/vendor/github.com/docker/docker/man/src/top.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/top.md rename to cli/vendor/github.com/docker/docker/man/src/top.md diff --git a/fn/vendor/github.com/docker/docker/man/src/unpause.md b/cli/vendor/github.com/docker/docker/man/src/unpause.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/unpause.md rename to cli/vendor/github.com/docker/docker/man/src/unpause.md diff --git a/fn/vendor/github.com/docker/docker/man/src/update.md b/cli/vendor/github.com/docker/docker/man/src/update.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/update.md rename to cli/vendor/github.com/docker/docker/man/src/update.md diff --git a/fn/vendor/github.com/docker/docker/man/src/version.md b/cli/vendor/github.com/docker/docker/man/src/version.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/version.md rename to cli/vendor/github.com/docker/docker/man/src/version.md diff --git a/fn/vendor/github.com/docker/docker/man/src/volume.md b/cli/vendor/github.com/docker/docker/man/src/volume.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/volume.md rename to cli/vendor/github.com/docker/docker/man/src/volume.md diff --git a/fn/vendor/github.com/docker/docker/man/src/volume/create.md b/cli/vendor/github.com/docker/docker/man/src/volume/create.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/volume/create.md rename to cli/vendor/github.com/docker/docker/man/src/volume/create.md diff --git a/fn/vendor/github.com/docker/docker/man/src/volume/inspect.md b/cli/vendor/github.com/docker/docker/man/src/volume/inspect.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/volume/inspect.md rename to cli/vendor/github.com/docker/docker/man/src/volume/inspect.md diff --git a/fn/vendor/github.com/docker/docker/man/src/volume/ls.md b/cli/vendor/github.com/docker/docker/man/src/volume/ls.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/volume/ls.md rename to cli/vendor/github.com/docker/docker/man/src/volume/ls.md diff --git a/fn/vendor/github.com/docker/docker/man/src/wait.md b/cli/vendor/github.com/docker/docker/man/src/wait.md similarity index 100% rename from fn/vendor/github.com/docker/docker/man/src/wait.md rename to cli/vendor/github.com/docker/docker/man/src/wait.md diff --git a/fn/vendor/github.com/docker/docker/migrate/v1/migratev1.go b/cli/vendor/github.com/docker/docker/migrate/v1/migratev1.go similarity index 100% rename from fn/vendor/github.com/docker/docker/migrate/v1/migratev1.go rename to cli/vendor/github.com/docker/docker/migrate/v1/migratev1.go diff --git a/fn/vendor/github.com/docker/docker/migrate/v1/migratev1_test.go b/cli/vendor/github.com/docker/docker/migrate/v1/migratev1_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/migrate/v1/migratev1_test.go rename to cli/vendor/github.com/docker/docker/migrate/v1/migratev1_test.go diff --git a/fn/vendor/github.com/docker/docker/oci/defaults_linux.go b/cli/vendor/github.com/docker/docker/oci/defaults_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/oci/defaults_linux.go rename to cli/vendor/github.com/docker/docker/oci/defaults_linux.go diff --git a/fn/vendor/github.com/docker/docker/oci/defaults_solaris.go b/cli/vendor/github.com/docker/docker/oci/defaults_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/oci/defaults_solaris.go rename to cli/vendor/github.com/docker/docker/oci/defaults_solaris.go diff --git a/fn/vendor/github.com/docker/docker/oci/defaults_windows.go b/cli/vendor/github.com/docker/docker/oci/defaults_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/oci/defaults_windows.go rename to cli/vendor/github.com/docker/docker/oci/defaults_windows.go diff --git a/fn/vendor/github.com/docker/docker/oci/devices_linux.go b/cli/vendor/github.com/docker/docker/oci/devices_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/oci/devices_linux.go rename to cli/vendor/github.com/docker/docker/oci/devices_linux.go diff --git a/fn/vendor/github.com/docker/docker/oci/devices_unsupported.go b/cli/vendor/github.com/docker/docker/oci/devices_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/oci/devices_unsupported.go rename to cli/vendor/github.com/docker/docker/oci/devices_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/oci/namespaces.go b/cli/vendor/github.com/docker/docker/oci/namespaces.go similarity index 100% rename from fn/vendor/github.com/docker/docker/oci/namespaces.go rename to cli/vendor/github.com/docker/docker/oci/namespaces.go diff --git a/fn/vendor/github.com/docker/docker/opts/env.go b/cli/vendor/github.com/docker/docker/opts/env.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/env.go rename to cli/vendor/github.com/docker/docker/opts/env.go diff --git a/fn/vendor/github.com/docker/docker/opts/env_test.go b/cli/vendor/github.com/docker/docker/opts/env_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/env_test.go rename to cli/vendor/github.com/docker/docker/opts/env_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/hosts.go b/cli/vendor/github.com/docker/docker/opts/hosts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/hosts.go rename to cli/vendor/github.com/docker/docker/opts/hosts.go diff --git a/fn/vendor/github.com/docker/docker/opts/hosts_test.go b/cli/vendor/github.com/docker/docker/opts/hosts_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/hosts_test.go rename to cli/vendor/github.com/docker/docker/opts/hosts_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/hosts_unix.go b/cli/vendor/github.com/docker/docker/opts/hosts_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/hosts_unix.go rename to cli/vendor/github.com/docker/docker/opts/hosts_unix.go diff --git a/fn/vendor/github.com/docker/docker/opts/hosts_windows.go b/cli/vendor/github.com/docker/docker/opts/hosts_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/hosts_windows.go rename to cli/vendor/github.com/docker/docker/opts/hosts_windows.go diff --git a/fn/vendor/github.com/docker/docker/opts/ip.go b/cli/vendor/github.com/docker/docker/opts/ip.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/ip.go rename to cli/vendor/github.com/docker/docker/opts/ip.go diff --git a/fn/vendor/github.com/docker/docker/opts/ip_test.go b/cli/vendor/github.com/docker/docker/opts/ip_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/ip_test.go rename to cli/vendor/github.com/docker/docker/opts/ip_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/mount.go b/cli/vendor/github.com/docker/docker/opts/mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/mount.go rename to cli/vendor/github.com/docker/docker/opts/mount.go diff --git a/fn/vendor/github.com/docker/docker/opts/mount_test.go b/cli/vendor/github.com/docker/docker/opts/mount_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/mount_test.go rename to cli/vendor/github.com/docker/docker/opts/mount_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/opts.go b/cli/vendor/github.com/docker/docker/opts/opts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/opts.go rename to cli/vendor/github.com/docker/docker/opts/opts.go diff --git a/fn/vendor/github.com/docker/docker/opts/opts_test.go b/cli/vendor/github.com/docker/docker/opts/opts_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/opts_test.go rename to cli/vendor/github.com/docker/docker/opts/opts_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/opts_unix.go b/cli/vendor/github.com/docker/docker/opts/opts_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/opts_unix.go rename to cli/vendor/github.com/docker/docker/opts/opts_unix.go diff --git a/fn/vendor/github.com/docker/docker/opts/opts_windows.go b/cli/vendor/github.com/docker/docker/opts/opts_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/opts_windows.go rename to cli/vendor/github.com/docker/docker/opts/opts_windows.go diff --git a/fn/vendor/github.com/docker/docker/opts/port.go b/cli/vendor/github.com/docker/docker/opts/port.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/port.go rename to cli/vendor/github.com/docker/docker/opts/port.go diff --git a/fn/vendor/github.com/docker/docker/opts/port_test.go b/cli/vendor/github.com/docker/docker/opts/port_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/port_test.go rename to cli/vendor/github.com/docker/docker/opts/port_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/quotedstring.go b/cli/vendor/github.com/docker/docker/opts/quotedstring.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/quotedstring.go rename to cli/vendor/github.com/docker/docker/opts/quotedstring.go diff --git a/fn/vendor/github.com/docker/docker/opts/quotedstring_test.go b/cli/vendor/github.com/docker/docker/opts/quotedstring_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/quotedstring_test.go rename to cli/vendor/github.com/docker/docker/opts/quotedstring_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/runtime.go b/cli/vendor/github.com/docker/docker/opts/runtime.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/runtime.go rename to cli/vendor/github.com/docker/docker/opts/runtime.go diff --git a/fn/vendor/github.com/docker/docker/opts/secret.go b/cli/vendor/github.com/docker/docker/opts/secret.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/secret.go rename to cli/vendor/github.com/docker/docker/opts/secret.go diff --git a/fn/vendor/github.com/docker/docker/opts/secret_test.go b/cli/vendor/github.com/docker/docker/opts/secret_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/secret_test.go rename to cli/vendor/github.com/docker/docker/opts/secret_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/throttledevice.go b/cli/vendor/github.com/docker/docker/opts/throttledevice.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/throttledevice.go rename to cli/vendor/github.com/docker/docker/opts/throttledevice.go diff --git a/fn/vendor/github.com/docker/docker/opts/ulimit.go b/cli/vendor/github.com/docker/docker/opts/ulimit.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/ulimit.go rename to cli/vendor/github.com/docker/docker/opts/ulimit.go diff --git a/fn/vendor/github.com/docker/docker/opts/ulimit_test.go b/cli/vendor/github.com/docker/docker/opts/ulimit_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/ulimit_test.go rename to cli/vendor/github.com/docker/docker/opts/ulimit_test.go diff --git a/fn/vendor/github.com/docker/docker/opts/weightdevice.go b/cli/vendor/github.com/docker/docker/opts/weightdevice.go similarity index 100% rename from fn/vendor/github.com/docker/docker/opts/weightdevice.go rename to cli/vendor/github.com/docker/docker/opts/weightdevice.go diff --git a/fn/vendor/github.com/docker/docker/pkg/README.md b/cli/vendor/github.com/docker/docker/pkg/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/README.md rename to cli/vendor/github.com/docker/docker/pkg/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/aaparser/aaparser.go b/cli/vendor/github.com/docker/docker/pkg/aaparser/aaparser.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/aaparser/aaparser.go rename to cli/vendor/github.com/docker/docker/pkg/aaparser/aaparser.go diff --git a/fn/vendor/github.com/docker/docker/pkg/aaparser/aaparser_test.go b/cli/vendor/github.com/docker/docker/pkg/aaparser/aaparser_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/aaparser/aaparser_test.go rename to cli/vendor/github.com/docker/docker/pkg/aaparser/aaparser_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/README.md b/cli/vendor/github.com/docker/docker/pkg/archive/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/README.md rename to cli/vendor/github.com/docker/docker/pkg/archive/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_linux.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_linux.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_linux_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_linux_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_other.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_other.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_other.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_other.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_unix.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_unix.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_windows.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_windows.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/archive_windows_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/archive_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/archive_windows_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/archive_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes_linux.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes_linux.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes_other.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes_other.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes_other.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes_other.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes_posix_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes_posix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes_posix_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes_posix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes_unix.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes_unix.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/changes_windows.go b/cli/vendor/github.com/docker/docker/pkg/archive/changes_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/changes_windows.go rename to cli/vendor/github.com/docker/docker/pkg/archive/changes_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/copy.go b/cli/vendor/github.com/docker/docker/pkg/archive/copy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/copy.go rename to cli/vendor/github.com/docker/docker/pkg/archive/copy.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/copy_unix.go b/cli/vendor/github.com/docker/docker/pkg/archive/copy_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/copy_unix.go rename to cli/vendor/github.com/docker/docker/pkg/archive/copy_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/copy_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/copy_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/copy_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/copy_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/copy_windows.go b/cli/vendor/github.com/docker/docker/pkg/archive/copy_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/copy_windows.go rename to cli/vendor/github.com/docker/docker/pkg/archive/copy_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/diff.go b/cli/vendor/github.com/docker/docker/pkg/archive/diff.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/diff.go rename to cli/vendor/github.com/docker/docker/pkg/archive/diff.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/diff_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/diff_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/diff_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/diff_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/example_changes.go b/cli/vendor/github.com/docker/docker/pkg/archive/example_changes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/example_changes.go rename to cli/vendor/github.com/docker/docker/pkg/archive/example_changes.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/testdata/broken.tar b/cli/vendor/github.com/docker/docker/pkg/archive/testdata/broken.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/testdata/broken.tar rename to cli/vendor/github.com/docker/docker/pkg/archive/testdata/broken.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/time_linux.go b/cli/vendor/github.com/docker/docker/pkg/archive/time_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/time_linux.go rename to cli/vendor/github.com/docker/docker/pkg/archive/time_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/time_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/archive/time_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/time_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/archive/time_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/utils_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/utils_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/utils_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/whiteouts.go b/cli/vendor/github.com/docker/docker/pkg/archive/whiteouts.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/whiteouts.go rename to cli/vendor/github.com/docker/docker/pkg/archive/whiteouts.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/wrap.go b/cli/vendor/github.com/docker/docker/pkg/archive/wrap.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/wrap.go rename to cli/vendor/github.com/docker/docker/pkg/archive/wrap.go diff --git a/fn/vendor/github.com/docker/docker/pkg/archive/wrap_test.go b/cli/vendor/github.com/docker/docker/pkg/archive/wrap_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/archive/wrap_test.go rename to cli/vendor/github.com/docker/docker/pkg/archive/wrap_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/authorization/api.go b/cli/vendor/github.com/docker/docker/pkg/authorization/api.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/authorization/api.go rename to cli/vendor/github.com/docker/docker/pkg/authorization/api.go diff --git a/fn/vendor/github.com/docker/docker/pkg/authorization/authz.go b/cli/vendor/github.com/docker/docker/pkg/authorization/authz.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/authorization/authz.go rename to cli/vendor/github.com/docker/docker/pkg/authorization/authz.go diff --git a/fn/vendor/github.com/docker/docker/pkg/authorization/authz_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/authorization/authz_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/authorization/authz_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/authorization/authz_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/authorization/middleware.go b/cli/vendor/github.com/docker/docker/pkg/authorization/middleware.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/authorization/middleware.go rename to cli/vendor/github.com/docker/docker/pkg/authorization/middleware.go diff --git a/fn/vendor/github.com/docker/docker/pkg/authorization/plugin.go b/cli/vendor/github.com/docker/docker/pkg/authorization/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/authorization/plugin.go rename to cli/vendor/github.com/docker/docker/pkg/authorization/plugin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/authorization/response.go b/cli/vendor/github.com/docker/docker/pkg/authorization/response.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/authorization/response.go rename to cli/vendor/github.com/docker/docker/pkg/authorization/response.go diff --git a/fn/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered.go b/cli/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered.go rename to cli/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered.go diff --git a/fn/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered_test.go b/cli/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered_test.go rename to cli/vendor/github.com/docker/docker/pkg/broadcaster/unbuffered_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive_test.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive_test.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive_unix.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive_unix.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive_windows.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/archive_windows.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/archive_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_linux.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_linux.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_unix.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_unix.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/chroot_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/diff.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/diff.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/diff.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/diff.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/diff_unix.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/diff_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/diff_unix.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/diff_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/diff_windows.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/diff_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/diff_windows.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/diff_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/init_unix.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/init_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/init_unix.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/init_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go b/cli/vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go rename to cli/vendor/github.com/docker/docker/pkg/chrootarchive/init_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_log.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_log.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_log.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_log.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_deferred_remove.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_deferred_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_deferred_remove.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_deferred_remove.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/ioctl.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/ioctl.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/ioctl.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/ioctl.go diff --git a/fn/vendor/github.com/docker/docker/pkg/devicemapper/log.go b/cli/vendor/github.com/docker/docker/pkg/devicemapper/log.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/devicemapper/log.go rename to cli/vendor/github.com/docker/docker/pkg/devicemapper/log.go diff --git a/fn/vendor/github.com/docker/docker/pkg/directory/directory.go b/cli/vendor/github.com/docker/docker/pkg/directory/directory.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/directory/directory.go rename to cli/vendor/github.com/docker/docker/pkg/directory/directory.go diff --git a/fn/vendor/github.com/docker/docker/pkg/directory/directory_test.go b/cli/vendor/github.com/docker/docker/pkg/directory/directory_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/directory/directory_test.go rename to cli/vendor/github.com/docker/docker/pkg/directory/directory_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/directory/directory_unix.go b/cli/vendor/github.com/docker/docker/pkg/directory/directory_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/directory/directory_unix.go rename to cli/vendor/github.com/docker/docker/pkg/directory/directory_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/directory/directory_windows.go b/cli/vendor/github.com/docker/docker/pkg/directory/directory_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/directory/directory_windows.go rename to cli/vendor/github.com/docker/docker/pkg/directory/directory_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/README.md b/cli/vendor/github.com/docker/docker/pkg/discovery/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/README.md rename to cli/vendor/github.com/docker/docker/pkg/discovery/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/backends.go b/cli/vendor/github.com/docker/docker/pkg/discovery/backends.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/backends.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/backends.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/discovery.go b/cli/vendor/github.com/docker/docker/pkg/discovery/discovery.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/discovery.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/discovery.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/discovery_test.go b/cli/vendor/github.com/docker/docker/pkg/discovery/discovery_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/discovery_test.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/discovery_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/entry.go b/cli/vendor/github.com/docker/docker/pkg/discovery/entry.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/entry.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/entry.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/file/file.go b/cli/vendor/github.com/docker/docker/pkg/discovery/file/file.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/file/file.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/file/file.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/file/file_test.go b/cli/vendor/github.com/docker/docker/pkg/discovery/file/file_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/file/file_test.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/file/file_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/generator.go b/cli/vendor/github.com/docker/docker/pkg/discovery/generator.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/generator.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/generator.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/generator_test.go b/cli/vendor/github.com/docker/docker/pkg/discovery/generator_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/generator_test.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/generator_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/kv/kv.go b/cli/vendor/github.com/docker/docker/pkg/discovery/kv/kv.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/kv/kv.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/kv/kv.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/kv/kv_test.go b/cli/vendor/github.com/docker/docker/pkg/discovery/kv/kv_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/kv/kv_test.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/kv/kv_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/memory/memory.go b/cli/vendor/github.com/docker/docker/pkg/discovery/memory/memory.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/memory/memory.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/memory/memory.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/memory/memory_test.go b/cli/vendor/github.com/docker/docker/pkg/discovery/memory/memory_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/memory/memory_test.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/memory/memory_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes.go b/cli/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes.go diff --git a/fn/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes_test.go b/cli/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes_test.go rename to cli/vendor/github.com/docker/docker/pkg/discovery/nodes/nodes_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/filenotify/filenotify.go b/cli/vendor/github.com/docker/docker/pkg/filenotify/filenotify.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/filenotify/filenotify.go rename to cli/vendor/github.com/docker/docker/pkg/filenotify/filenotify.go diff --git a/fn/vendor/github.com/docker/docker/pkg/filenotify/fsnotify.go b/cli/vendor/github.com/docker/docker/pkg/filenotify/fsnotify.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/filenotify/fsnotify.go rename to cli/vendor/github.com/docker/docker/pkg/filenotify/fsnotify.go diff --git a/fn/vendor/github.com/docker/docker/pkg/filenotify/poller.go b/cli/vendor/github.com/docker/docker/pkg/filenotify/poller.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/filenotify/poller.go rename to cli/vendor/github.com/docker/docker/pkg/filenotify/poller.go diff --git a/fn/vendor/github.com/docker/docker/pkg/filenotify/poller_test.go b/cli/vendor/github.com/docker/docker/pkg/filenotify/poller_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/filenotify/poller_test.go rename to cli/vendor/github.com/docker/docker/pkg/filenotify/poller_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils.go b/cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils.go rename to cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_darwin.go b/cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_darwin.go rename to cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_darwin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_solaris.go b/cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_test.go b/cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_test.go rename to cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_unix.go b/cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_unix.go rename to cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go b/cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go rename to cli/vendor/github.com/docker/docker/pkg/fileutils/fileutils_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux.go b/cli/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux.go rename to cli/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux_test.go b/cli/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux_test.go rename to cli/vendor/github.com/docker/docker/pkg/fsutils/fsutils_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/gitutils/gitutils.go b/cli/vendor/github.com/docker/docker/pkg/gitutils/gitutils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/gitutils/gitutils.go rename to cli/vendor/github.com/docker/docker/pkg/gitutils/gitutils.go diff --git a/fn/vendor/github.com/docker/docker/pkg/gitutils/gitutils_test.go b/cli/vendor/github.com/docker/docker/pkg/gitutils/gitutils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/gitutils/gitutils_test.go rename to cli/vendor/github.com/docker/docker/pkg/gitutils/gitutils_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/homedir/homedir.go b/cli/vendor/github.com/docker/docker/pkg/homedir/homedir.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/homedir/homedir.go rename to cli/vendor/github.com/docker/docker/pkg/homedir/homedir.go diff --git a/fn/vendor/github.com/docker/docker/pkg/homedir/homedir_linux.go b/cli/vendor/github.com/docker/docker/pkg/homedir/homedir_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/homedir/homedir_linux.go rename to cli/vendor/github.com/docker/docker/pkg/homedir/homedir_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/homedir/homedir_others.go b/cli/vendor/github.com/docker/docker/pkg/homedir/homedir_others.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/homedir/homedir_others.go rename to cli/vendor/github.com/docker/docker/pkg/homedir/homedir_others.go diff --git a/fn/vendor/github.com/docker/docker/pkg/homedir/homedir_test.go b/cli/vendor/github.com/docker/docker/pkg/homedir/homedir_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/homedir/homedir_test.go rename to cli/vendor/github.com/docker/docker/pkg/homedir/homedir_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/httputils/httputils.go b/cli/vendor/github.com/docker/docker/pkg/httputils/httputils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/httputils/httputils.go rename to cli/vendor/github.com/docker/docker/pkg/httputils/httputils.go diff --git a/fn/vendor/github.com/docker/docker/pkg/httputils/httputils_test.go b/cli/vendor/github.com/docker/docker/pkg/httputils/httputils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/httputils/httputils_test.go rename to cli/vendor/github.com/docker/docker/pkg/httputils/httputils_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/httputils/mimetype.go b/cli/vendor/github.com/docker/docker/pkg/httputils/mimetype.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/httputils/mimetype.go rename to cli/vendor/github.com/docker/docker/pkg/httputils/mimetype.go diff --git a/fn/vendor/github.com/docker/docker/pkg/httputils/mimetype_test.go b/cli/vendor/github.com/docker/docker/pkg/httputils/mimetype_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/httputils/mimetype_test.go rename to cli/vendor/github.com/docker/docker/pkg/httputils/mimetype_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader.go b/cli/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader.go rename to cli/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader.go diff --git a/fn/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader_test.go b/cli/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader_test.go rename to cli/vendor/github.com/docker/docker/pkg/httputils/resumablerequestreader_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/idtools.go b/cli/vendor/github.com/docker/docker/pkg/idtools/idtools.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/idtools.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/idtools.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/idtools_unix.go b/cli/vendor/github.com/docker/docker/pkg/idtools/idtools_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/idtools_unix.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/idtools_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/idtools_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/idtools/idtools_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/idtools_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/idtools_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/idtools_windows.go b/cli/vendor/github.com/docker/docker/pkg/idtools/idtools_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/idtools_windows.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/idtools_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go b/cli/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/usergroupadd_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/idtools/utils_unix.go b/cli/vendor/github.com/docker/docker/pkg/idtools/utils_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/idtools/utils_unix.go rename to cli/vendor/github.com/docker/docker/pkg/idtools/utils_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/buffer.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/buffer.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/buffer.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/buffer.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/buffer_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/buffer_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/buffer_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/buffer_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/bytespipe_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/bytespipe_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/bytespipe_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/bytespipe_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/fmt.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/fmt.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/fmt.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/fmt.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/fmt_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/fmt_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/fmt_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/fmt_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/fswriters.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/fswriters.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/fswriters.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/fswriters.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/fswriters_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/fswriters_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/fswriters_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/fswriters_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/multireader.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/multireader.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/multireader.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/multireader.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/multireader_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/multireader_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/multireader_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/multireader_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/readers.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/readers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/readers.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/readers.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/readers_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/readers_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/readers_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/readers_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/writers.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/writers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/writers.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/writers.go diff --git a/fn/vendor/github.com/docker/docker/pkg/ioutils/writers_test.go b/cli/vendor/github.com/docker/docker/pkg/ioutils/writers_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/ioutils/writers_test.go rename to cli/vendor/github.com/docker/docker/pkg/ioutils/writers_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling_test.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling_test.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlog_marshalling_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes_test.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes_test.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/jsonlogbytes_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling_test.go b/cli/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling_test.go rename to cli/vendor/github.com/docker/docker/pkg/jsonlog/time_marshalling_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go b/cli/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go rename to cli/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage.go diff --git a/fn/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage_test.go b/cli/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage_test.go rename to cli/vendor/github.com/docker/docker/pkg/jsonmessage/jsonmessage_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/listeners/group_unix.go b/cli/vendor/github.com/docker/docker/pkg/listeners/group_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/listeners/group_unix.go rename to cli/vendor/github.com/docker/docker/pkg/listeners/group_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/listeners/listeners_solaris.go b/cli/vendor/github.com/docker/docker/pkg/listeners/listeners_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/listeners/listeners_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/listeners/listeners_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/listeners/listeners_unix.go b/cli/vendor/github.com/docker/docker/pkg/listeners/listeners_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/listeners/listeners_unix.go rename to cli/vendor/github.com/docker/docker/pkg/listeners/listeners_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/listeners/listeners_windows.go b/cli/vendor/github.com/docker/docker/pkg/listeners/listeners_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/listeners/listeners_windows.go rename to cli/vendor/github.com/docker/docker/pkg/listeners/listeners_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/locker/README.md b/cli/vendor/github.com/docker/docker/pkg/locker/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/locker/README.md rename to cli/vendor/github.com/docker/docker/pkg/locker/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/locker/locker.go b/cli/vendor/github.com/docker/docker/pkg/locker/locker.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/locker/locker.go rename to cli/vendor/github.com/docker/docker/pkg/locker/locker.go diff --git a/fn/vendor/github.com/docker/docker/pkg/locker/locker_test.go b/cli/vendor/github.com/docker/docker/pkg/locker/locker_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/locker/locker_test.go rename to cli/vendor/github.com/docker/docker/pkg/locker/locker_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/longpath/longpath.go b/cli/vendor/github.com/docker/docker/pkg/longpath/longpath.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/longpath/longpath.go rename to cli/vendor/github.com/docker/docker/pkg/longpath/longpath.go diff --git a/fn/vendor/github.com/docker/docker/pkg/longpath/longpath_test.go b/cli/vendor/github.com/docker/docker/pkg/longpath/longpath_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/longpath/longpath_test.go rename to cli/vendor/github.com/docker/docker/pkg/longpath/longpath_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/loopback/attach_loopback.go b/cli/vendor/github.com/docker/docker/pkg/loopback/attach_loopback.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/loopback/attach_loopback.go rename to cli/vendor/github.com/docker/docker/pkg/loopback/attach_loopback.go diff --git a/fn/vendor/github.com/docker/docker/pkg/loopback/ioctl.go b/cli/vendor/github.com/docker/docker/pkg/loopback/ioctl.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/loopback/ioctl.go rename to cli/vendor/github.com/docker/docker/pkg/loopback/ioctl.go diff --git a/fn/vendor/github.com/docker/docker/pkg/loopback/loop_wrapper.go b/cli/vendor/github.com/docker/docker/pkg/loopback/loop_wrapper.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/loopback/loop_wrapper.go rename to cli/vendor/github.com/docker/docker/pkg/loopback/loop_wrapper.go diff --git a/fn/vendor/github.com/docker/docker/pkg/loopback/loopback.go b/cli/vendor/github.com/docker/docker/pkg/loopback/loopback.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/loopback/loopback.go rename to cli/vendor/github.com/docker/docker/pkg/loopback/loopback.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/flags.go b/cli/vendor/github.com/docker/docker/pkg/mount/flags.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/flags.go rename to cli/vendor/github.com/docker/docker/pkg/mount/flags.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/mount/flags_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/flags_linux.go b/cli/vendor/github.com/docker/docker/pkg/mount/flags_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/flags_linux.go rename to cli/vendor/github.com/docker/docker/pkg/mount/flags_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/mount/flags_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mount.go b/cli/vendor/github.com/docker/docker/pkg/mount/mount.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mount.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mount.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mount_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/mount/mount_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mount_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mount_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mounter_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mounter_linux.go b/cli/vendor/github.com/docker/docker/pkg/mount/mounter_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mounter_linux.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mounter_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mounter_linux_test.go b/cli/vendor/github.com/docker/docker/pkg/mount/mounter_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mounter_linux_test.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mounter_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mounter_solaris.go b/cli/vendor/github.com/docker/docker/pkg/mount/mounter_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mounter_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mounter_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mounter_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux_test.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux_test.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_solaris.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_windows.go b/cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/mountinfo_windows.go rename to cli/vendor/github.com/docker/docker/pkg/mount/mountinfo_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go b/cli/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go rename to cli/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux_test.go b/cli/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux_test.go rename to cli/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_solaris.go b/cli/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/mount/sharedsubtree_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/namesgenerator/cmd/names-generator/main.go b/cli/vendor/github.com/docker/docker/pkg/namesgenerator/cmd/names-generator/main.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/namesgenerator/cmd/names-generator/main.go rename to cli/vendor/github.com/docker/docker/pkg/namesgenerator/cmd/names-generator/main.go diff --git a/fn/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator.go b/cli/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator.go rename to cli/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator.go diff --git a/fn/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator_test.go b/cli/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator_test.go rename to cli/vendor/github.com/docker/docker/pkg/namesgenerator/names-generator_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_darwin.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_darwin.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_darwin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/kernel_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_solaris.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/kernel/uname_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_linux.go b/cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_linux.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_solaris.go b/cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix.go b/cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_windows.go b/cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_windows.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/parsers.go b/cli/vendor/github.com/docker/docker/pkg/parsers/parsers.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/parsers.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/parsers.go diff --git a/fn/vendor/github.com/docker/docker/pkg/parsers/parsers_test.go b/cli/vendor/github.com/docker/docker/pkg/parsers/parsers_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/parsers/parsers_test.go rename to cli/vendor/github.com/docker/docker/pkg/parsers/parsers_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile.go b/cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile.go rename to cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_darwin.go b/cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_darwin.go rename to cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_darwin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_test.go b/cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_test.go rename to cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_unix.go b/cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_unix.go rename to cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_windows.go b/cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pidfile/pidfile_windows.go rename to cli/vendor/github.com/docker/docker/pkg/pidfile/pidfile_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/platform/architecture_linux.go b/cli/vendor/github.com/docker/docker/pkg/platform/architecture_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/platform/architecture_linux.go rename to cli/vendor/github.com/docker/docker/pkg/platform/architecture_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/platform/architecture_unix.go b/cli/vendor/github.com/docker/docker/pkg/platform/architecture_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/platform/architecture_unix.go rename to cli/vendor/github.com/docker/docker/pkg/platform/architecture_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/platform/architecture_windows.go b/cli/vendor/github.com/docker/docker/pkg/platform/architecture_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/platform/architecture_windows.go rename to cli/vendor/github.com/docker/docker/pkg/platform/architecture_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/platform/platform.go b/cli/vendor/github.com/docker/docker/pkg/platform/platform.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/platform/platform.go rename to cli/vendor/github.com/docker/docker/pkg/platform/platform.go diff --git a/fn/vendor/github.com/docker/docker/pkg/platform/utsname_int8.go b/cli/vendor/github.com/docker/docker/pkg/platform/utsname_int8.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/platform/utsname_int8.go rename to cli/vendor/github.com/docker/docker/pkg/platform/utsname_int8.go diff --git a/fn/vendor/github.com/docker/docker/pkg/platform/utsname_uint8.go b/cli/vendor/github.com/docker/docker/pkg/platform/utsname_uint8.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/platform/utsname_uint8.go rename to cli/vendor/github.com/docker/docker/pkg/platform/utsname_uint8.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugingetter/getter.go b/cli/vendor/github.com/docker/docker/pkg/plugingetter/getter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugingetter/getter.go rename to cli/vendor/github.com/docker/docker/pkg/plugingetter/getter.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/client.go b/cli/vendor/github.com/docker/docker/pkg/plugins/client.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/client.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/client.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/client_test.go b/cli/vendor/github.com/docker/docker/pkg/plugins/client_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/client_test.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/client_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/discovery.go b/cli/vendor/github.com/docker/docker/pkg/plugins/discovery.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/discovery.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/discovery.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/discovery_test.go b/cli/vendor/github.com/docker/docker/pkg/plugins/discovery_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/discovery_test.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/discovery_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/discovery_unix.go b/cli/vendor/github.com/docker/docker/pkg/plugins/discovery_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/discovery_unix.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/discovery_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/discovery_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/plugins/discovery_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/discovery_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/discovery_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/discovery_windows.go b/cli/vendor/github.com/docker/docker/pkg/plugins/discovery_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/discovery_windows.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/discovery_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/errors.go b/cli/vendor/github.com/docker/docker/pkg/plugins/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/errors.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/errors.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/plugin_test.go b/cli/vendor/github.com/docker/docker/pkg/plugins/plugin_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/plugin_test.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/plugin_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/README.md b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/README.md rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/foo.go b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/foo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/foo.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/foo.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/main.go b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/main.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/main.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/main.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser.go b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser_test.go b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser_test.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/parser_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/template.go b/cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/template.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/template.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/pluginrpc-gen/template.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/plugins.go b/cli/vendor/github.com/docker/docker/pkg/plugins/plugins.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/plugins.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/plugins.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/plugins_unix.go b/cli/vendor/github.com/docker/docker/pkg/plugins/plugins_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/plugins_unix.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/plugins_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/plugins_windows.go b/cli/vendor/github.com/docker/docker/pkg/plugins/plugins_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/plugins_windows.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/plugins_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/transport/http.go b/cli/vendor/github.com/docker/docker/pkg/plugins/transport/http.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/transport/http.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/transport/http.go diff --git a/fn/vendor/github.com/docker/docker/pkg/plugins/transport/transport.go b/cli/vendor/github.com/docker/docker/pkg/plugins/transport/transport.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/plugins/transport/transport.go rename to cli/vendor/github.com/docker/docker/pkg/plugins/transport/transport.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pools/pools.go b/cli/vendor/github.com/docker/docker/pkg/pools/pools.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pools/pools.go rename to cli/vendor/github.com/docker/docker/pkg/pools/pools.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pools/pools_test.go b/cli/vendor/github.com/docker/docker/pkg/pools/pools_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pools/pools_test.go rename to cli/vendor/github.com/docker/docker/pkg/pools/pools_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/progress/progress.go b/cli/vendor/github.com/docker/docker/pkg/progress/progress.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/progress/progress.go rename to cli/vendor/github.com/docker/docker/pkg/progress/progress.go diff --git a/fn/vendor/github.com/docker/docker/pkg/progress/progressreader.go b/cli/vendor/github.com/docker/docker/pkg/progress/progressreader.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/progress/progressreader.go rename to cli/vendor/github.com/docker/docker/pkg/progress/progressreader.go diff --git a/fn/vendor/github.com/docker/docker/pkg/progress/progressreader_test.go b/cli/vendor/github.com/docker/docker/pkg/progress/progressreader_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/progress/progressreader_test.go rename to cli/vendor/github.com/docker/docker/pkg/progress/progressreader_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/promise/promise.go b/cli/vendor/github.com/docker/docker/pkg/promise/promise.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/promise/promise.go rename to cli/vendor/github.com/docker/docker/pkg/promise/promise.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pubsub/publisher.go b/cli/vendor/github.com/docker/docker/pkg/pubsub/publisher.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pubsub/publisher.go rename to cli/vendor/github.com/docker/docker/pkg/pubsub/publisher.go diff --git a/fn/vendor/github.com/docker/docker/pkg/pubsub/publisher_test.go b/cli/vendor/github.com/docker/docker/pkg/pubsub/publisher_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/pubsub/publisher_test.go rename to cli/vendor/github.com/docker/docker/pkg/pubsub/publisher_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/random/random.go b/cli/vendor/github.com/docker/docker/pkg/random/random.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/random/random.go rename to cli/vendor/github.com/docker/docker/pkg/random/random.go diff --git a/fn/vendor/github.com/docker/docker/pkg/random/random_test.go b/cli/vendor/github.com/docker/docker/pkg/random/random_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/random/random_test.go rename to cli/vendor/github.com/docker/docker/pkg/random/random_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/reexec/README.md b/cli/vendor/github.com/docker/docker/pkg/reexec/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/reexec/README.md rename to cli/vendor/github.com/docker/docker/pkg/reexec/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/reexec/command_linux.go b/cli/vendor/github.com/docker/docker/pkg/reexec/command_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/reexec/command_linux.go rename to cli/vendor/github.com/docker/docker/pkg/reexec/command_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/reexec/command_unix.go b/cli/vendor/github.com/docker/docker/pkg/reexec/command_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/reexec/command_unix.go rename to cli/vendor/github.com/docker/docker/pkg/reexec/command_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/reexec/command_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/reexec/command_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/reexec/command_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/reexec/command_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/reexec/command_windows.go b/cli/vendor/github.com/docker/docker/pkg/reexec/command_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/reexec/command_windows.go rename to cli/vendor/github.com/docker/docker/pkg/reexec/command_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/reexec/reexec.go b/cli/vendor/github.com/docker/docker/pkg/reexec/reexec.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/reexec/reexec.go rename to cli/vendor/github.com/docker/docker/pkg/reexec/reexec.go diff --git a/fn/vendor/github.com/docker/docker/pkg/registrar/registrar.go b/cli/vendor/github.com/docker/docker/pkg/registrar/registrar.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/registrar/registrar.go rename to cli/vendor/github.com/docker/docker/pkg/registrar/registrar.go diff --git a/fn/vendor/github.com/docker/docker/pkg/registrar/registrar_test.go b/cli/vendor/github.com/docker/docker/pkg/registrar/registrar_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/registrar/registrar_test.go rename to cli/vendor/github.com/docker/docker/pkg/registrar/registrar_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/README.md b/cli/vendor/github.com/docker/docker/pkg/signal/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/README.md rename to cli/vendor/github.com/docker/docker/pkg/signal/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_darwin.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_darwin.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_darwin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_linux.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_linux.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_solaris.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_unix.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_unix.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/signal_windows.go b/cli/vendor/github.com/docker/docker/pkg/signal/signal_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/signal_windows.go rename to cli/vendor/github.com/docker/docker/pkg/signal/signal_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/signal/trap.go b/cli/vendor/github.com/docker/docker/pkg/signal/trap.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/signal/trap.go rename to cli/vendor/github.com/docker/docker/pkg/signal/trap.go diff --git a/fn/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy.go b/cli/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy.go rename to cli/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy.go diff --git a/fn/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy_test.go b/cli/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy_test.go rename to cli/vendor/github.com/docker/docker/pkg/stdcopy/stdcopy_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter.go b/cli/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter.go rename to cli/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter.go diff --git a/fn/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter_test.go b/cli/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter_test.go rename to cli/vendor/github.com/docker/docker/pkg/streamformatter/streamformatter_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/stringid/README.md b/cli/vendor/github.com/docker/docker/pkg/stringid/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stringid/README.md rename to cli/vendor/github.com/docker/docker/pkg/stringid/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/stringid/stringid.go b/cli/vendor/github.com/docker/docker/pkg/stringid/stringid.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stringid/stringid.go rename to cli/vendor/github.com/docker/docker/pkg/stringid/stringid.go diff --git a/fn/vendor/github.com/docker/docker/pkg/stringid/stringid_test.go b/cli/vendor/github.com/docker/docker/pkg/stringid/stringid_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stringid/stringid_test.go rename to cli/vendor/github.com/docker/docker/pkg/stringid/stringid_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/stringutils/README.md b/cli/vendor/github.com/docker/docker/pkg/stringutils/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stringutils/README.md rename to cli/vendor/github.com/docker/docker/pkg/stringutils/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/stringutils/stringutils.go b/cli/vendor/github.com/docker/docker/pkg/stringutils/stringutils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stringutils/stringutils.go rename to cli/vendor/github.com/docker/docker/pkg/stringutils/stringutils.go diff --git a/fn/vendor/github.com/docker/docker/pkg/stringutils/stringutils_test.go b/cli/vendor/github.com/docker/docker/pkg/stringutils/stringutils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/stringutils/stringutils_test.go rename to cli/vendor/github.com/docker/docker/pkg/stringutils/stringutils_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE b/cli/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE rename to cli/vendor/github.com/docker/docker/pkg/symlink/LICENSE.APACHE diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD b/cli/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD rename to cli/vendor/github.com/docker/docker/pkg/symlink/LICENSE.BSD diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/README.md b/cli/vendor/github.com/docker/docker/pkg/symlink/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/README.md rename to cli/vendor/github.com/docker/docker/pkg/symlink/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/fs.go b/cli/vendor/github.com/docker/docker/pkg/symlink/fs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/fs.go rename to cli/vendor/github.com/docker/docker/pkg/symlink/fs.go diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/fs_unix.go b/cli/vendor/github.com/docker/docker/pkg/symlink/fs_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/fs_unix.go rename to cli/vendor/github.com/docker/docker/pkg/symlink/fs_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/fs_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/symlink/fs_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/fs_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/symlink/fs_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/symlink/fs_windows.go b/cli/vendor/github.com/docker/docker/pkg/symlink/fs_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/symlink/fs_windows.go rename to cli/vendor/github.com/docker/docker/pkg/symlink/fs_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/README.md b/cli/vendor/github.com/docker/docker/pkg/sysinfo/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/README.md rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/numcpu.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/numcpu.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/numcpu.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/numcpu.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_linux.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_linux.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_windows.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_windows.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/numcpu_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux_test.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux_test.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_solaris.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_test.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_test.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_unix.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_unix.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_windows.go b/cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_windows.go rename to cli/vendor/github.com/docker/docker/pkg/sysinfo/sysinfo_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/chtimes.go b/cli/vendor/github.com/docker/docker/pkg/system/chtimes.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/chtimes.go rename to cli/vendor/github.com/docker/docker/pkg/system/chtimes.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/chtimes_test.go b/cli/vendor/github.com/docker/docker/pkg/system/chtimes_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/chtimes_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/chtimes_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/chtimes_unix.go b/cli/vendor/github.com/docker/docker/pkg/system/chtimes_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/chtimes_unix.go rename to cli/vendor/github.com/docker/docker/pkg/system/chtimes_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/chtimes_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/system/chtimes_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/chtimes_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/chtimes_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/chtimes_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/chtimes_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/chtimes_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/chtimes_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/chtimes_windows_test.go b/cli/vendor/github.com/docker/docker/pkg/system/chtimes_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/chtimes_windows_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/chtimes_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/errors.go b/cli/vendor/github.com/docker/docker/pkg/system/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/errors.go rename to cli/vendor/github.com/docker/docker/pkg/system/errors.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/events_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/events_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/events_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/events_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/exitcode.go b/cli/vendor/github.com/docker/docker/pkg/system/exitcode.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/exitcode.go rename to cli/vendor/github.com/docker/docker/pkg/system/exitcode.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/filesys.go b/cli/vendor/github.com/docker/docker/pkg/system/filesys.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/filesys.go rename to cli/vendor/github.com/docker/docker/pkg/system/filesys.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/filesys_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/filesys_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/filesys_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/filesys_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/lstat_unix.go b/cli/vendor/github.com/docker/docker/pkg/system/lstat_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/lstat_unix.go rename to cli/vendor/github.com/docker/docker/pkg/system/lstat_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/lstat_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/system/lstat_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/lstat_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/lstat_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/lstat_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/lstat_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/lstat_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/lstat_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/meminfo.go b/cli/vendor/github.com/docker/docker/pkg/system/meminfo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/meminfo.go rename to cli/vendor/github.com/docker/docker/pkg/system/meminfo.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/meminfo_linux.go b/cli/vendor/github.com/docker/docker/pkg/system/meminfo_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/meminfo_linux.go rename to cli/vendor/github.com/docker/docker/pkg/system/meminfo_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/meminfo_solaris.go b/cli/vendor/github.com/docker/docker/pkg/system/meminfo_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/meminfo_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/system/meminfo_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/meminfo_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/system/meminfo_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/meminfo_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/meminfo_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/meminfo_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/meminfo_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/meminfo_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/meminfo_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/mknod.go b/cli/vendor/github.com/docker/docker/pkg/system/mknod.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/mknod.go rename to cli/vendor/github.com/docker/docker/pkg/system/mknod.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/mknod_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/mknod_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/mknod_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/mknod_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/path_unix.go b/cli/vendor/github.com/docker/docker/pkg/system/path_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/path_unix.go rename to cli/vendor/github.com/docker/docker/pkg/system/path_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/path_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/path_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/path_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/path_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/path_windows_test.go b/cli/vendor/github.com/docker/docker/pkg/system/path_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/path_windows_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/path_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/process_unix.go b/cli/vendor/github.com/docker/docker/pkg/system/process_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/process_unix.go rename to cli/vendor/github.com/docker/docker/pkg/system/process_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_darwin.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_darwin.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_darwin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_linux.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_linux.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_openbsd.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_openbsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_openbsd.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_openbsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_solaris.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_unix.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_unix.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/stat_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/stat_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/stat_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/stat_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/syscall_unix.go b/cli/vendor/github.com/docker/docker/pkg/system/syscall_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/syscall_unix.go rename to cli/vendor/github.com/docker/docker/pkg/system/syscall_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/syscall_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/syscall_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/syscall_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/syscall_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/syscall_windows_test.go b/cli/vendor/github.com/docker/docker/pkg/system/syscall_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/syscall_windows_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/syscall_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/umask.go b/cli/vendor/github.com/docker/docker/pkg/system/umask.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/umask.go rename to cli/vendor/github.com/docker/docker/pkg/system/umask.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/umask_windows.go b/cli/vendor/github.com/docker/docker/pkg/system/umask_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/umask_windows.go rename to cli/vendor/github.com/docker/docker/pkg/system/umask_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/utimes_linux.go b/cli/vendor/github.com/docker/docker/pkg/system/utimes_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/utimes_linux.go rename to cli/vendor/github.com/docker/docker/pkg/system/utimes_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/utimes_unix_test.go b/cli/vendor/github.com/docker/docker/pkg/system/utimes_unix_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/utimes_unix_test.go rename to cli/vendor/github.com/docker/docker/pkg/system/utimes_unix_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go b/cli/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go rename to cli/vendor/github.com/docker/docker/pkg/system/xattrs_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go b/cli/vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go rename to cli/vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tailfile/tailfile.go b/cli/vendor/github.com/docker/docker/pkg/tailfile/tailfile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tailfile/tailfile.go rename to cli/vendor/github.com/docker/docker/pkg/tailfile/tailfile.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tailfile/tailfile_test.go b/cli/vendor/github.com/docker/docker/pkg/tailfile/tailfile_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tailfile/tailfile_test.go rename to cli/vendor/github.com/docker/docker/pkg/tailfile/tailfile_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/builder_context.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/builder_context.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/builder_context.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/builder_context.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/builder_context_test.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/builder_context_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/builder_context_test.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/builder_context_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/fileinfosums_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/tarsum.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/tarsum.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/tarsum.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/tarsum.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/tarsum_spec.md b/cli/vendor/github.com/docker/docker/pkg/tarsum/tarsum_spec.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/tarsum_spec.md rename to cli/vendor/github.com/docker/docker/pkg/tarsum/tarsum_spec.md diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/tarsum_test.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/tarsum_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/tarsum_test.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/tarsum_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-0.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-1.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-2.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/collision/collision-3.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/json b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/json similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/json rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/json diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar b/cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar rename to cli/vendor/github.com/docker/docker/pkg/tarsum/testdata/xattr/layer.tar diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/versioning.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/versioning.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/versioning.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/versioning.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/versioning_test.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/versioning_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/versioning_test.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/versioning_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tarsum/writercloser.go b/cli/vendor/github.com/docker/docker/pkg/tarsum/writercloser.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tarsum/writercloser.go rename to cli/vendor/github.com/docker/docker/pkg/tarsum/writercloser.go diff --git a/fn/vendor/github.com/docker/docker/pkg/templates/templates.go b/cli/vendor/github.com/docker/docker/pkg/templates/templates.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/templates/templates.go rename to cli/vendor/github.com/docker/docker/pkg/templates/templates.go diff --git a/fn/vendor/github.com/docker/docker/pkg/templates/templates_test.go b/cli/vendor/github.com/docker/docker/pkg/templates/templates_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/templates/templates_test.go rename to cli/vendor/github.com/docker/docker/pkg/templates/templates_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/ascii.go b/cli/vendor/github.com/docker/docker/pkg/term/ascii.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/ascii.go rename to cli/vendor/github.com/docker/docker/pkg/term/ascii.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/ascii_test.go b/cli/vendor/github.com/docker/docker/pkg/term/ascii_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/ascii_test.go rename to cli/vendor/github.com/docker/docker/pkg/term/ascii_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go b/cli/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go rename to cli/vendor/github.com/docker/docker/pkg/term/tc_linux_cgo.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/tc_other.go b/cli/vendor/github.com/docker/docker/pkg/term/tc_other.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/tc_other.go rename to cli/vendor/github.com/docker/docker/pkg/term/tc_other.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/tc_solaris_cgo.go b/cli/vendor/github.com/docker/docker/pkg/term/tc_solaris_cgo.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/tc_solaris_cgo.go rename to cli/vendor/github.com/docker/docker/pkg/term/tc_solaris_cgo.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/term.go b/cli/vendor/github.com/docker/docker/pkg/term/term.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/term.go rename to cli/vendor/github.com/docker/docker/pkg/term/term.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/term_solaris.go b/cli/vendor/github.com/docker/docker/pkg/term/term_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/term_solaris.go rename to cli/vendor/github.com/docker/docker/pkg/term/term_solaris.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/term_unix.go b/cli/vendor/github.com/docker/docker/pkg/term/term_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/term_unix.go rename to cli/vendor/github.com/docker/docker/pkg/term/term_unix.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/term_windows.go b/cli/vendor/github.com/docker/docker/pkg/term/term_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/term_windows.go rename to cli/vendor/github.com/docker/docker/pkg/term/term_windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/termios_darwin.go b/cli/vendor/github.com/docker/docker/pkg/term/termios_darwin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/termios_darwin.go rename to cli/vendor/github.com/docker/docker/pkg/term/termios_darwin.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go b/cli/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go rename to cli/vendor/github.com/docker/docker/pkg/term/termios_freebsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/termios_linux.go b/cli/vendor/github.com/docker/docker/pkg/term/termios_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/termios_linux.go rename to cli/vendor/github.com/docker/docker/pkg/term/termios_linux.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/termios_openbsd.go b/cli/vendor/github.com/docker/docker/pkg/term/termios_openbsd.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/termios_openbsd.go rename to cli/vendor/github.com/docker/docker/pkg/term/termios_openbsd.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/windows/ansi_reader.go b/cli/vendor/github.com/docker/docker/pkg/term/windows/ansi_reader.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/windows/ansi_reader.go rename to cli/vendor/github.com/docker/docker/pkg/term/windows/ansi_reader.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/windows/ansi_writer.go b/cli/vendor/github.com/docker/docker/pkg/term/windows/ansi_writer.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/windows/ansi_writer.go rename to cli/vendor/github.com/docker/docker/pkg/term/windows/ansi_writer.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/windows/console.go b/cli/vendor/github.com/docker/docker/pkg/term/windows/console.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/windows/console.go rename to cli/vendor/github.com/docker/docker/pkg/term/windows/console.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/windows/windows.go b/cli/vendor/github.com/docker/docker/pkg/term/windows/windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/windows/windows.go rename to cli/vendor/github.com/docker/docker/pkg/term/windows/windows.go diff --git a/fn/vendor/github.com/docker/docker/pkg/term/windows/windows_test.go b/cli/vendor/github.com/docker/docker/pkg/term/windows/windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/term/windows/windows_test.go rename to cli/vendor/github.com/docker/docker/pkg/term/windows/windows_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/assert/assert.go b/cli/vendor/github.com/docker/docker/pkg/testutil/assert/assert.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/assert/assert.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/assert/assert.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/cmd/command.go b/cli/vendor/github.com/docker/docker/pkg/testutil/cmd/command.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/cmd/command.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/cmd/command.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/cmd/command_test.go b/cli/vendor/github.com/docker/docker/pkg/testutil/cmd/command_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/cmd/command_test.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/cmd/command_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/golden/golden.go b/cli/vendor/github.com/docker/docker/pkg/testutil/golden/golden.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/golden/golden.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/golden/golden.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/pkg.go b/cli/vendor/github.com/docker/docker/pkg/testutil/pkg.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/pkg.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/pkg.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/tempfile/tempfile.go b/cli/vendor/github.com/docker/docker/pkg/testutil/tempfile/tempfile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/tempfile/tempfile.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/tempfile/tempfile.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/utils.go b/cli/vendor/github.com/docker/docker/pkg/testutil/utils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/utils.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/utils.go diff --git a/fn/vendor/github.com/docker/docker/pkg/testutil/utils_test.go b/cli/vendor/github.com/docker/docker/pkg/testutil/utils_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/testutil/utils_test.go rename to cli/vendor/github.com/docker/docker/pkg/testutil/utils_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone.go b/cli/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone.go rename to cli/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go16.go b/cli/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go16.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go16.go rename to cli/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go16.go diff --git a/fn/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go17.go b/cli/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go17.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go17.go rename to cli/vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go17.go diff --git a/fn/vendor/github.com/docker/docker/pkg/truncindex/truncindex.go b/cli/vendor/github.com/docker/docker/pkg/truncindex/truncindex.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/truncindex/truncindex.go rename to cli/vendor/github.com/docker/docker/pkg/truncindex/truncindex.go diff --git a/fn/vendor/github.com/docker/docker/pkg/truncindex/truncindex_test.go b/cli/vendor/github.com/docker/docker/pkg/truncindex/truncindex_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/truncindex/truncindex_test.go rename to cli/vendor/github.com/docker/docker/pkg/truncindex/truncindex_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/urlutil/urlutil.go b/cli/vendor/github.com/docker/docker/pkg/urlutil/urlutil.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/urlutil/urlutil.go rename to cli/vendor/github.com/docker/docker/pkg/urlutil/urlutil.go diff --git a/fn/vendor/github.com/docker/docker/pkg/urlutil/urlutil_test.go b/cli/vendor/github.com/docker/docker/pkg/urlutil/urlutil_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/urlutil/urlutil_test.go rename to cli/vendor/github.com/docker/docker/pkg/urlutil/urlutil_test.go diff --git a/fn/vendor/github.com/docker/docker/pkg/useragent/README.md b/cli/vendor/github.com/docker/docker/pkg/useragent/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/useragent/README.md rename to cli/vendor/github.com/docker/docker/pkg/useragent/README.md diff --git a/fn/vendor/github.com/docker/docker/pkg/useragent/useragent.go b/cli/vendor/github.com/docker/docker/pkg/useragent/useragent.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/useragent/useragent.go rename to cli/vendor/github.com/docker/docker/pkg/useragent/useragent.go diff --git a/fn/vendor/github.com/docker/docker/pkg/useragent/useragent_test.go b/cli/vendor/github.com/docker/docker/pkg/useragent/useragent_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/pkg/useragent/useragent_test.go rename to cli/vendor/github.com/docker/docker/pkg/useragent/useragent_test.go diff --git a/fn/vendor/github.com/docker/docker/plugin/backend_linux.go b/cli/vendor/github.com/docker/docker/plugin/backend_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/backend_linux.go rename to cli/vendor/github.com/docker/docker/plugin/backend_linux.go diff --git a/fn/vendor/github.com/docker/docker/plugin/backend_unsupported.go b/cli/vendor/github.com/docker/docker/plugin/backend_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/backend_unsupported.go rename to cli/vendor/github.com/docker/docker/plugin/backend_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/plugin/blobstore.go b/cli/vendor/github.com/docker/docker/plugin/blobstore.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/blobstore.go rename to cli/vendor/github.com/docker/docker/plugin/blobstore.go diff --git a/fn/vendor/github.com/docker/docker/plugin/defs.go b/cli/vendor/github.com/docker/docker/plugin/defs.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/defs.go rename to cli/vendor/github.com/docker/docker/plugin/defs.go diff --git a/fn/vendor/github.com/docker/docker/plugin/manager.go b/cli/vendor/github.com/docker/docker/plugin/manager.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/manager.go rename to cli/vendor/github.com/docker/docker/plugin/manager.go diff --git a/fn/vendor/github.com/docker/docker/plugin/manager_linux.go b/cli/vendor/github.com/docker/docker/plugin/manager_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/manager_linux.go rename to cli/vendor/github.com/docker/docker/plugin/manager_linux.go diff --git a/fn/vendor/github.com/docker/docker/plugin/manager_solaris.go b/cli/vendor/github.com/docker/docker/plugin/manager_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/manager_solaris.go rename to cli/vendor/github.com/docker/docker/plugin/manager_solaris.go diff --git a/fn/vendor/github.com/docker/docker/plugin/manager_test.go b/cli/vendor/github.com/docker/docker/plugin/manager_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/manager_test.go rename to cli/vendor/github.com/docker/docker/plugin/manager_test.go diff --git a/fn/vendor/github.com/docker/docker/plugin/manager_windows.go b/cli/vendor/github.com/docker/docker/plugin/manager_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/manager_windows.go rename to cli/vendor/github.com/docker/docker/plugin/manager_windows.go diff --git a/fn/vendor/github.com/docker/docker/plugin/store.go b/cli/vendor/github.com/docker/docker/plugin/store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/store.go rename to cli/vendor/github.com/docker/docker/plugin/store.go diff --git a/fn/vendor/github.com/docker/docker/plugin/store_test.go b/cli/vendor/github.com/docker/docker/plugin/store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/store_test.go rename to cli/vendor/github.com/docker/docker/plugin/store_test.go diff --git a/fn/vendor/github.com/docker/docker/plugin/v2/plugin.go b/cli/vendor/github.com/docker/docker/plugin/v2/plugin.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/v2/plugin.go rename to cli/vendor/github.com/docker/docker/plugin/v2/plugin.go diff --git a/fn/vendor/github.com/docker/docker/plugin/v2/plugin_linux.go b/cli/vendor/github.com/docker/docker/plugin/v2/plugin_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/v2/plugin_linux.go rename to cli/vendor/github.com/docker/docker/plugin/v2/plugin_linux.go diff --git a/fn/vendor/github.com/docker/docker/plugin/v2/plugin_unsupported.go b/cli/vendor/github.com/docker/docker/plugin/v2/plugin_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/v2/plugin_unsupported.go rename to cli/vendor/github.com/docker/docker/plugin/v2/plugin_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/plugin/v2/settable.go b/cli/vendor/github.com/docker/docker/plugin/v2/settable.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/v2/settable.go rename to cli/vendor/github.com/docker/docker/plugin/v2/settable.go diff --git a/fn/vendor/github.com/docker/docker/plugin/v2/settable_test.go b/cli/vendor/github.com/docker/docker/plugin/v2/settable_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/plugin/v2/settable_test.go rename to cli/vendor/github.com/docker/docker/plugin/v2/settable_test.go diff --git a/fn/vendor/github.com/docker/docker/poule.yml b/cli/vendor/github.com/docker/docker/poule.yml similarity index 100% rename from fn/vendor/github.com/docker/docker/poule.yml rename to cli/vendor/github.com/docker/docker/poule.yml diff --git a/fn/vendor/github.com/docker/docker/profiles/apparmor/apparmor.go b/cli/vendor/github.com/docker/docker/profiles/apparmor/apparmor.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/apparmor/apparmor.go rename to cli/vendor/github.com/docker/docker/profiles/apparmor/apparmor.go diff --git a/fn/vendor/github.com/docker/docker/profiles/apparmor/template.go b/cli/vendor/github.com/docker/docker/profiles/apparmor/template.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/apparmor/template.go rename to cli/vendor/github.com/docker/docker/profiles/apparmor/template.go diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/default.json b/cli/vendor/github.com/docker/docker/profiles/seccomp/default.json similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/default.json rename to cli/vendor/github.com/docker/docker/profiles/seccomp/default.json diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/fixtures/example.json b/cli/vendor/github.com/docker/docker/profiles/seccomp/fixtures/example.json similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/fixtures/example.json rename to cli/vendor/github.com/docker/docker/profiles/seccomp/fixtures/example.json diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/generate.go b/cli/vendor/github.com/docker/docker/profiles/seccomp/generate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/generate.go rename to cli/vendor/github.com/docker/docker/profiles/seccomp/generate.go diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp.go b/cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp.go rename to cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp.go diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp_default.go b/cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp_default.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp_default.go rename to cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp_default.go diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp_test.go b/cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp_test.go rename to cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp_test.go diff --git a/fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp_unsupported.go b/cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/profiles/seccomp/seccomp_unsupported.go rename to cli/vendor/github.com/docker/docker/profiles/seccomp/seccomp_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/project/ARM.md b/cli/vendor/github.com/docker/docker/project/ARM.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/ARM.md rename to cli/vendor/github.com/docker/docker/project/ARM.md diff --git a/fn/vendor/github.com/docker/docker/project/BRANCHES-AND-TAGS.md b/cli/vendor/github.com/docker/docker/project/BRANCHES-AND-TAGS.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/BRANCHES-AND-TAGS.md rename to cli/vendor/github.com/docker/docker/project/BRANCHES-AND-TAGS.md diff --git a/fn/vendor/github.com/docker/docker/project/CONTRIBUTING.md b/cli/vendor/github.com/docker/docker/project/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/CONTRIBUTING.md rename to cli/vendor/github.com/docker/docker/project/CONTRIBUTING.md diff --git a/fn/vendor/github.com/docker/docker/project/GOVERNANCE.md b/cli/vendor/github.com/docker/docker/project/GOVERNANCE.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/GOVERNANCE.md rename to cli/vendor/github.com/docker/docker/project/GOVERNANCE.md diff --git a/fn/vendor/github.com/docker/docker/project/IRC-ADMINISTRATION.md b/cli/vendor/github.com/docker/docker/project/IRC-ADMINISTRATION.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/IRC-ADMINISTRATION.md rename to cli/vendor/github.com/docker/docker/project/IRC-ADMINISTRATION.md diff --git a/fn/vendor/github.com/docker/docker/project/ISSUE-TRIAGE.md b/cli/vendor/github.com/docker/docker/project/ISSUE-TRIAGE.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/ISSUE-TRIAGE.md rename to cli/vendor/github.com/docker/docker/project/ISSUE-TRIAGE.md diff --git a/fn/vendor/github.com/docker/docker/project/PACKAGE-REPO-MAINTENANCE.md b/cli/vendor/github.com/docker/docker/project/PACKAGE-REPO-MAINTENANCE.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/PACKAGE-REPO-MAINTENANCE.md rename to cli/vendor/github.com/docker/docker/project/PACKAGE-REPO-MAINTENANCE.md diff --git a/fn/vendor/github.com/docker/docker/project/PACKAGERS.md b/cli/vendor/github.com/docker/docker/project/PACKAGERS.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/PACKAGERS.md rename to cli/vendor/github.com/docker/docker/project/PACKAGERS.md diff --git a/fn/vendor/github.com/docker/docker/project/PATCH-RELEASES.md b/cli/vendor/github.com/docker/docker/project/PATCH-RELEASES.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/PATCH-RELEASES.md rename to cli/vendor/github.com/docker/docker/project/PATCH-RELEASES.md diff --git a/fn/vendor/github.com/docker/docker/project/PRINCIPLES.md b/cli/vendor/github.com/docker/docker/project/PRINCIPLES.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/PRINCIPLES.md rename to cli/vendor/github.com/docker/docker/project/PRINCIPLES.md diff --git a/fn/vendor/github.com/docker/docker/project/README.md b/cli/vendor/github.com/docker/docker/project/README.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/README.md rename to cli/vendor/github.com/docker/docker/project/README.md diff --git a/fn/vendor/github.com/docker/docker/project/RELEASE-CHECKLIST.md b/cli/vendor/github.com/docker/docker/project/RELEASE-CHECKLIST.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/RELEASE-CHECKLIST.md rename to cli/vendor/github.com/docker/docker/project/RELEASE-CHECKLIST.md diff --git a/fn/vendor/github.com/docker/docker/project/RELEASE-PROCESS.md b/cli/vendor/github.com/docker/docker/project/RELEASE-PROCESS.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/RELEASE-PROCESS.md rename to cli/vendor/github.com/docker/docker/project/RELEASE-PROCESS.md diff --git a/fn/vendor/github.com/docker/docker/project/REVIEWING.md b/cli/vendor/github.com/docker/docker/project/REVIEWING.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/REVIEWING.md rename to cli/vendor/github.com/docker/docker/project/REVIEWING.md diff --git a/fn/vendor/github.com/docker/docker/project/TOOLS.md b/cli/vendor/github.com/docker/docker/project/TOOLS.md similarity index 100% rename from fn/vendor/github.com/docker/docker/project/TOOLS.md rename to cli/vendor/github.com/docker/docker/project/TOOLS.md diff --git a/fn/vendor/github.com/docker/docker/reference/store.go b/cli/vendor/github.com/docker/docker/reference/store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/reference/store.go rename to cli/vendor/github.com/docker/docker/reference/store.go diff --git a/fn/vendor/github.com/docker/docker/reference/store_test.go b/cli/vendor/github.com/docker/docker/reference/store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/reference/store_test.go rename to cli/vendor/github.com/docker/docker/reference/store_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/auth.go b/cli/vendor/github.com/docker/docker/registry/auth.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/auth.go rename to cli/vendor/github.com/docker/docker/registry/auth.go diff --git a/fn/vendor/github.com/docker/docker/registry/auth_test.go b/cli/vendor/github.com/docker/docker/registry/auth_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/auth_test.go rename to cli/vendor/github.com/docker/docker/registry/auth_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/config.go b/cli/vendor/github.com/docker/docker/registry/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/config.go rename to cli/vendor/github.com/docker/docker/registry/config.go diff --git a/fn/vendor/github.com/docker/docker/registry/config_test.go b/cli/vendor/github.com/docker/docker/registry/config_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/config_test.go rename to cli/vendor/github.com/docker/docker/registry/config_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/config_unix.go b/cli/vendor/github.com/docker/docker/registry/config_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/config_unix.go rename to cli/vendor/github.com/docker/docker/registry/config_unix.go diff --git a/fn/vendor/github.com/docker/docker/registry/config_windows.go b/cli/vendor/github.com/docker/docker/registry/config_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/config_windows.go rename to cli/vendor/github.com/docker/docker/registry/config_windows.go diff --git a/fn/vendor/github.com/docker/docker/registry/endpoint_test.go b/cli/vendor/github.com/docker/docker/registry/endpoint_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/endpoint_test.go rename to cli/vendor/github.com/docker/docker/registry/endpoint_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/endpoint_v1.go b/cli/vendor/github.com/docker/docker/registry/endpoint_v1.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/endpoint_v1.go rename to cli/vendor/github.com/docker/docker/registry/endpoint_v1.go diff --git a/fn/vendor/github.com/docker/docker/registry/registry.go b/cli/vendor/github.com/docker/docker/registry/registry.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/registry.go rename to cli/vendor/github.com/docker/docker/registry/registry.go diff --git a/fn/vendor/github.com/docker/docker/registry/registry_mock_test.go b/cli/vendor/github.com/docker/docker/registry/registry_mock_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/registry_mock_test.go rename to cli/vendor/github.com/docker/docker/registry/registry_mock_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/registry_test.go b/cli/vendor/github.com/docker/docker/registry/registry_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/registry_test.go rename to cli/vendor/github.com/docker/docker/registry/registry_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/service.go b/cli/vendor/github.com/docker/docker/registry/service.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/service.go rename to cli/vendor/github.com/docker/docker/registry/service.go diff --git a/fn/vendor/github.com/docker/docker/registry/service_v1.go b/cli/vendor/github.com/docker/docker/registry/service_v1.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/service_v1.go rename to cli/vendor/github.com/docker/docker/registry/service_v1.go diff --git a/fn/vendor/github.com/docker/docker/registry/service_v1_test.go b/cli/vendor/github.com/docker/docker/registry/service_v1_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/service_v1_test.go rename to cli/vendor/github.com/docker/docker/registry/service_v1_test.go diff --git a/fn/vendor/github.com/docker/docker/registry/service_v2.go b/cli/vendor/github.com/docker/docker/registry/service_v2.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/service_v2.go rename to cli/vendor/github.com/docker/docker/registry/service_v2.go diff --git a/fn/vendor/github.com/docker/docker/registry/session.go b/cli/vendor/github.com/docker/docker/registry/session.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/session.go rename to cli/vendor/github.com/docker/docker/registry/session.go diff --git a/fn/vendor/github.com/docker/docker/registry/types.go b/cli/vendor/github.com/docker/docker/registry/types.go similarity index 100% rename from fn/vendor/github.com/docker/docker/registry/types.go rename to cli/vendor/github.com/docker/docker/registry/types.go diff --git a/fn/vendor/github.com/docker/docker/restartmanager/restartmanager.go b/cli/vendor/github.com/docker/docker/restartmanager/restartmanager.go similarity index 100% rename from fn/vendor/github.com/docker/docker/restartmanager/restartmanager.go rename to cli/vendor/github.com/docker/docker/restartmanager/restartmanager.go diff --git a/fn/vendor/github.com/docker/docker/restartmanager/restartmanager_test.go b/cli/vendor/github.com/docker/docker/restartmanager/restartmanager_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/restartmanager/restartmanager_test.go rename to cli/vendor/github.com/docker/docker/restartmanager/restartmanager_test.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/config.go b/cli/vendor/github.com/docker/docker/runconfig/config.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/config.go rename to cli/vendor/github.com/docker/docker/runconfig/config.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/config_test.go b/cli/vendor/github.com/docker/docker/runconfig/config_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/config_test.go rename to cli/vendor/github.com/docker/docker/runconfig/config_test.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/config_unix.go b/cli/vendor/github.com/docker/docker/runconfig/config_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/config_unix.go rename to cli/vendor/github.com/docker/docker/runconfig/config_unix.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/config_windows.go b/cli/vendor/github.com/docker/docker/runconfig/config_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/config_windows.go rename to cli/vendor/github.com/docker/docker/runconfig/config_windows.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/errors.go b/cli/vendor/github.com/docker/docker/runconfig/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/errors.go rename to cli/vendor/github.com/docker/docker/runconfig/errors.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_14.json b/cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_14.json similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_14.json rename to cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_14.json diff --git a/fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_17.json b/cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_17.json similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_17.json rename to cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_17.json diff --git a/fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_19.json b/cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_19.json similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_19.json rename to cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_config_1_19.json diff --git a/fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_14.json b/cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_14.json similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_14.json rename to cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_14.json diff --git a/fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_19.json b/cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_19.json similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_19.json rename to cli/vendor/github.com/docker/docker/runconfig/fixtures/unix/container_hostconfig_1_19.json diff --git a/fn/vendor/github.com/docker/docker/runconfig/fixtures/windows/container_config_1_19.json b/cli/vendor/github.com/docker/docker/runconfig/fixtures/windows/container_config_1_19.json similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/fixtures/windows/container_config_1_19.json rename to cli/vendor/github.com/docker/docker/runconfig/fixtures/windows/container_config_1_19.json diff --git a/fn/vendor/github.com/docker/docker/runconfig/hostconfig.go b/cli/vendor/github.com/docker/docker/runconfig/hostconfig.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/hostconfig.go rename to cli/vendor/github.com/docker/docker/runconfig/hostconfig.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/hostconfig_solaris.go b/cli/vendor/github.com/docker/docker/runconfig/hostconfig_solaris.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/hostconfig_solaris.go rename to cli/vendor/github.com/docker/docker/runconfig/hostconfig_solaris.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/hostconfig_test.go b/cli/vendor/github.com/docker/docker/runconfig/hostconfig_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/hostconfig_test.go rename to cli/vendor/github.com/docker/docker/runconfig/hostconfig_test.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/hostconfig_unix.go b/cli/vendor/github.com/docker/docker/runconfig/hostconfig_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/hostconfig_unix.go rename to cli/vendor/github.com/docker/docker/runconfig/hostconfig_unix.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/hostconfig_windows.go b/cli/vendor/github.com/docker/docker/runconfig/hostconfig_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/hostconfig_windows.go rename to cli/vendor/github.com/docker/docker/runconfig/hostconfig_windows.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/hostconfig_windows_test.go b/cli/vendor/github.com/docker/docker/runconfig/hostconfig_windows_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/hostconfig_windows_test.go rename to cli/vendor/github.com/docker/docker/runconfig/hostconfig_windows_test.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/opts/envfile.go b/cli/vendor/github.com/docker/docker/runconfig/opts/envfile.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/opts/envfile.go rename to cli/vendor/github.com/docker/docker/runconfig/opts/envfile.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/opts/envfile_test.go b/cli/vendor/github.com/docker/docker/runconfig/opts/envfile_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/opts/envfile_test.go rename to cli/vendor/github.com/docker/docker/runconfig/opts/envfile_test.go diff --git a/fn/vendor/github.com/docker/docker/runconfig/opts/parse.go b/cli/vendor/github.com/docker/docker/runconfig/opts/parse.go similarity index 100% rename from fn/vendor/github.com/docker/docker/runconfig/opts/parse.go rename to cli/vendor/github.com/docker/docker/runconfig/opts/parse.go diff --git a/fn/vendor/github.com/docker/docker/vendor.conf b/cli/vendor/github.com/docker/docker/vendor.conf similarity index 100% rename from fn/vendor/github.com/docker/docker/vendor.conf rename to cli/vendor/github.com/docker/docker/vendor.conf diff --git a/fn/vendor/github.com/docker/docker/volume/drivers/adapter.go b/cli/vendor/github.com/docker/docker/volume/drivers/adapter.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/drivers/adapter.go rename to cli/vendor/github.com/docker/docker/volume/drivers/adapter.go diff --git a/fn/vendor/github.com/docker/docker/volume/drivers/extpoint.go b/cli/vendor/github.com/docker/docker/volume/drivers/extpoint.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/drivers/extpoint.go rename to cli/vendor/github.com/docker/docker/volume/drivers/extpoint.go diff --git a/fn/vendor/github.com/docker/docker/volume/drivers/extpoint_test.go b/cli/vendor/github.com/docker/docker/volume/drivers/extpoint_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/drivers/extpoint_test.go rename to cli/vendor/github.com/docker/docker/volume/drivers/extpoint_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/drivers/proxy.go b/cli/vendor/github.com/docker/docker/volume/drivers/proxy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/drivers/proxy.go rename to cli/vendor/github.com/docker/docker/volume/drivers/proxy.go diff --git a/fn/vendor/github.com/docker/docker/volume/drivers/proxy_test.go b/cli/vendor/github.com/docker/docker/volume/drivers/proxy_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/drivers/proxy_test.go rename to cli/vendor/github.com/docker/docker/volume/drivers/proxy_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/local/local.go b/cli/vendor/github.com/docker/docker/volume/local/local.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/local/local.go rename to cli/vendor/github.com/docker/docker/volume/local/local.go diff --git a/fn/vendor/github.com/docker/docker/volume/local/local_test.go b/cli/vendor/github.com/docker/docker/volume/local/local_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/local/local_test.go rename to cli/vendor/github.com/docker/docker/volume/local/local_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/local/local_unix.go b/cli/vendor/github.com/docker/docker/volume/local/local_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/local/local_unix.go rename to cli/vendor/github.com/docker/docker/volume/local/local_unix.go diff --git a/fn/vendor/github.com/docker/docker/volume/local/local_windows.go b/cli/vendor/github.com/docker/docker/volume/local/local_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/local/local_windows.go rename to cli/vendor/github.com/docker/docker/volume/local/local_windows.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/db.go b/cli/vendor/github.com/docker/docker/volume/store/db.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/db.go rename to cli/vendor/github.com/docker/docker/volume/store/db.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/errors.go b/cli/vendor/github.com/docker/docker/volume/store/errors.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/errors.go rename to cli/vendor/github.com/docker/docker/volume/store/errors.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/restore.go b/cli/vendor/github.com/docker/docker/volume/store/restore.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/restore.go rename to cli/vendor/github.com/docker/docker/volume/store/restore.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/store.go b/cli/vendor/github.com/docker/docker/volume/store/store.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/store.go rename to cli/vendor/github.com/docker/docker/volume/store/store.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/store_test.go b/cli/vendor/github.com/docker/docker/volume/store/store_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/store_test.go rename to cli/vendor/github.com/docker/docker/volume/store/store_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/store_unix.go b/cli/vendor/github.com/docker/docker/volume/store/store_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/store_unix.go rename to cli/vendor/github.com/docker/docker/volume/store/store_unix.go diff --git a/fn/vendor/github.com/docker/docker/volume/store/store_windows.go b/cli/vendor/github.com/docker/docker/volume/store/store_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/store/store_windows.go rename to cli/vendor/github.com/docker/docker/volume/store/store_windows.go diff --git a/fn/vendor/github.com/docker/docker/volume/testutils/testutils.go b/cli/vendor/github.com/docker/docker/volume/testutils/testutils.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/testutils/testutils.go rename to cli/vendor/github.com/docker/docker/volume/testutils/testutils.go diff --git a/fn/vendor/github.com/docker/docker/volume/validate.go b/cli/vendor/github.com/docker/docker/volume/validate.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/validate.go rename to cli/vendor/github.com/docker/docker/volume/validate.go diff --git a/fn/vendor/github.com/docker/docker/volume/validate_test.go b/cli/vendor/github.com/docker/docker/volume/validate_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/validate_test.go rename to cli/vendor/github.com/docker/docker/volume/validate_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/validate_test_unix.go b/cli/vendor/github.com/docker/docker/volume/validate_test_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/validate_test_unix.go rename to cli/vendor/github.com/docker/docker/volume/validate_test_unix.go diff --git a/fn/vendor/github.com/docker/docker/volume/validate_test_windows.go b/cli/vendor/github.com/docker/docker/volume/validate_test_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/validate_test_windows.go rename to cli/vendor/github.com/docker/docker/volume/validate_test_windows.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume.go b/cli/vendor/github.com/docker/docker/volume/volume.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume.go rename to cli/vendor/github.com/docker/docker/volume/volume.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_copy.go b/cli/vendor/github.com/docker/docker/volume/volume_copy.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_copy.go rename to cli/vendor/github.com/docker/docker/volume/volume_copy.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_copy_unix.go b/cli/vendor/github.com/docker/docker/volume/volume_copy_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_copy_unix.go rename to cli/vendor/github.com/docker/docker/volume/volume_copy_unix.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_copy_windows.go b/cli/vendor/github.com/docker/docker/volume/volume_copy_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_copy_windows.go rename to cli/vendor/github.com/docker/docker/volume/volume_copy_windows.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_linux.go b/cli/vendor/github.com/docker/docker/volume/volume_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_linux.go rename to cli/vendor/github.com/docker/docker/volume/volume_linux.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_linux_test.go b/cli/vendor/github.com/docker/docker/volume/volume_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_linux_test.go rename to cli/vendor/github.com/docker/docker/volume/volume_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_propagation_linux.go b/cli/vendor/github.com/docker/docker/volume/volume_propagation_linux.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_propagation_linux.go rename to cli/vendor/github.com/docker/docker/volume/volume_propagation_linux.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_propagation_linux_test.go b/cli/vendor/github.com/docker/docker/volume/volume_propagation_linux_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_propagation_linux_test.go rename to cli/vendor/github.com/docker/docker/volume/volume_propagation_linux_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_propagation_unsupported.go b/cli/vendor/github.com/docker/docker/volume/volume_propagation_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_propagation_unsupported.go rename to cli/vendor/github.com/docker/docker/volume/volume_propagation_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_test.go b/cli/vendor/github.com/docker/docker/volume/volume_test.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_test.go rename to cli/vendor/github.com/docker/docker/volume/volume_test.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_unix.go b/cli/vendor/github.com/docker/docker/volume/volume_unix.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_unix.go rename to cli/vendor/github.com/docker/docker/volume/volume_unix.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_unsupported.go b/cli/vendor/github.com/docker/docker/volume/volume_unsupported.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_unsupported.go rename to cli/vendor/github.com/docker/docker/volume/volume_unsupported.go diff --git a/fn/vendor/github.com/docker/docker/volume/volume_windows.go b/cli/vendor/github.com/docker/docker/volume/volume_windows.go similarity index 100% rename from fn/vendor/github.com/docker/docker/volume/volume_windows.go rename to cli/vendor/github.com/docker/docker/volume/volume_windows.go diff --git a/fn/vendor/github.com/docker/go-units/CONTRIBUTING.md b/cli/vendor/github.com/docker/go-units/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/docker/go-units/CONTRIBUTING.md rename to cli/vendor/github.com/docker/go-units/CONTRIBUTING.md diff --git a/fn/vendor/github.com/docker/go-units/LICENSE b/cli/vendor/github.com/docker/go-units/LICENSE similarity index 100% rename from fn/vendor/github.com/docker/go-units/LICENSE rename to cli/vendor/github.com/docker/go-units/LICENSE diff --git a/fn/vendor/github.com/docker/go-units/MAINTAINERS b/cli/vendor/github.com/docker/go-units/MAINTAINERS similarity index 100% rename from fn/vendor/github.com/docker/go-units/MAINTAINERS rename to cli/vendor/github.com/docker/go-units/MAINTAINERS diff --git a/fn/vendor/github.com/docker/go-units/README.md b/cli/vendor/github.com/docker/go-units/README.md similarity index 100% rename from fn/vendor/github.com/docker/go-units/README.md rename to cli/vendor/github.com/docker/go-units/README.md diff --git a/fn/vendor/github.com/docker/go-units/circle.yml b/cli/vendor/github.com/docker/go-units/circle.yml similarity index 100% rename from fn/vendor/github.com/docker/go-units/circle.yml rename to cli/vendor/github.com/docker/go-units/circle.yml diff --git a/fn/vendor/github.com/docker/go-units/duration.go b/cli/vendor/github.com/docker/go-units/duration.go similarity index 100% rename from fn/vendor/github.com/docker/go-units/duration.go rename to cli/vendor/github.com/docker/go-units/duration.go diff --git a/fn/vendor/github.com/docker/go-units/duration_test.go b/cli/vendor/github.com/docker/go-units/duration_test.go similarity index 100% rename from fn/vendor/github.com/docker/go-units/duration_test.go rename to cli/vendor/github.com/docker/go-units/duration_test.go diff --git a/fn/vendor/github.com/docker/go-units/size.go b/cli/vendor/github.com/docker/go-units/size.go similarity index 100% rename from fn/vendor/github.com/docker/go-units/size.go rename to cli/vendor/github.com/docker/go-units/size.go diff --git a/fn/vendor/github.com/docker/go-units/size_test.go b/cli/vendor/github.com/docker/go-units/size_test.go similarity index 100% rename from fn/vendor/github.com/docker/go-units/size_test.go rename to cli/vendor/github.com/docker/go-units/size_test.go diff --git a/fn/vendor/github.com/docker/go-units/ulimit.go b/cli/vendor/github.com/docker/go-units/ulimit.go similarity index 100% rename from fn/vendor/github.com/docker/go-units/ulimit.go rename to cli/vendor/github.com/docker/go-units/ulimit.go diff --git a/fn/vendor/github.com/docker/go-units/ulimit_test.go b/cli/vendor/github.com/docker/go-units/ulimit_test.go similarity index 100% rename from fn/vendor/github.com/docker/go-units/ulimit_test.go rename to cli/vendor/github.com/docker/go-units/ulimit_test.go diff --git a/fn/vendor/github.com/funcy/functions_go/.gitignore b/cli/vendor/github.com/funcy/functions_go/.gitignore similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/.gitignore rename to cli/vendor/github.com/funcy/functions_go/.gitignore diff --git a/fn/vendor/github.com/funcy/functions_go/.swagger-codegen-ignore b/cli/vendor/github.com/funcy/functions_go/.swagger-codegen-ignore similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/.swagger-codegen-ignore rename to cli/vendor/github.com/funcy/functions_go/.swagger-codegen-ignore diff --git a/fn/vendor/github.com/funcy/functions_go/.travis.yml b/cli/vendor/github.com/funcy/functions_go/.travis.yml similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/.travis.yml rename to cli/vendor/github.com/funcy/functions_go/.travis.yml diff --git a/fn/vendor/github.com/funcy/functions_go/LICENSE b/cli/vendor/github.com/funcy/functions_go/LICENSE similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/LICENSE rename to cli/vendor/github.com/funcy/functions_go/LICENSE diff --git a/fn/vendor/github.com/funcy/functions_go/README.md b/cli/vendor/github.com/funcy/functions_go/README.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/README.md rename to cli/vendor/github.com/funcy/functions_go/README.md diff --git a/fn/vendor/github.com/funcy/functions_go/VERSION b/cli/vendor/github.com/funcy/functions_go/VERSION similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/VERSION rename to cli/vendor/github.com/funcy/functions_go/VERSION diff --git a/fn/vendor/github.com/funcy/functions_go/api_client.go b/cli/vendor/github.com/funcy/functions_go/api_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/api_client.go rename to cli/vendor/github.com/funcy/functions_go/api_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/api_response.go b/cli/vendor/github.com/funcy/functions_go/api_response.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/api_response.go rename to cli/vendor/github.com/funcy/functions_go/api_response.go diff --git a/fn/vendor/github.com/funcy/functions_go/app.go b/cli/vendor/github.com/funcy/functions_go/app.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/app.go rename to cli/vendor/github.com/funcy/functions_go/app.go diff --git a/fn/vendor/github.com/funcy/functions_go/app_wrapper.go b/cli/vendor/github.com/funcy/functions_go/app_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/app_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/app_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/apps_api.go b/cli/vendor/github.com/funcy/functions_go/apps_api.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/apps_api.go rename to cli/vendor/github.com/funcy/functions_go/apps_api.go diff --git a/fn/vendor/github.com/funcy/functions_go/apps_wrapper.go b/cli/vendor/github.com/funcy/functions_go/apps_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/apps_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/apps_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/apps_client.go b/cli/vendor/github.com/funcy/functions_go/client/apps/apps_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/apps_client.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/apps_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_responses.go b/cli/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/delete_apps_app_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_responses.go b/cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_app_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_responses.go b/cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/get_apps_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/get_apps_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_responses.go b/cli/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/patch_apps_app_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/post_apps_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/apps/post_apps_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/post_apps_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/post_apps_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/post_apps_responses.go b/cli/vendor/github.com/funcy/functions_go/client/apps/post_apps_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/post_apps_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/post_apps_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_responses.go b/cli/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/apps/put_apps_app_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/call/call_client.go b/cli/vendor/github.com/funcy/functions_go/client/call/call_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/call/call_client.go rename to cli/vendor/github.com/funcy/functions_go/client/call/call_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_responses.go b/cli/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/call/get_apps_app_calls_route_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/call/get_calls_call_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/call/get_calls_call_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/call/get_calls_call_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/call/get_calls_call_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/call/get_calls_call_responses.go b/cli/vendor/github.com/funcy/functions_go/client/call/get_calls_call_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/call/get_calls_call_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/call/get_calls_call_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/functions_client.go b/cli/vendor/github.com/funcy/functions_go/client/functions_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/functions_client.go rename to cli/vendor/github.com/funcy/functions_go/client/functions_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_responses.go b/cli/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/operations/delete_calls_call_log_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_responses.go b/cli/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/operations/get_calls_call_log_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/operations/operations_client.go b/cli/vendor/github.com/funcy/functions_go/client/operations/operations_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/operations/operations_client.go rename to cli/vendor/github.com/funcy/functions_go/client/operations/operations_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_responses.go b/cli/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/delete_apps_app_routes_route_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_responses.go b/cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_responses.go b/cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/get_apps_app_routes_route_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_responses.go b/cli/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/patch_apps_app_routes_route_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_responses.go b/cli/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/post_apps_app_routes_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_responses.go b/cli/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/put_apps_app_routes_route_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/routes/routes_client.go b/cli/vendor/github.com/funcy/functions_go/client/routes/routes_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/routes/routes_client.go rename to cli/vendor/github.com/funcy/functions_go/client/routes/routes_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_responses.go b/cli/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/tasks/get_tasks_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/tasks/tasks_client.go b/cli/vendor/github.com/funcy/functions_go/client/tasks/tasks_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/tasks/tasks_client.go rename to cli/vendor/github.com/funcy/functions_go/client/tasks/tasks_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/version/get_version_parameters.go b/cli/vendor/github.com/funcy/functions_go/client/version/get_version_parameters.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/version/get_version_parameters.go rename to cli/vendor/github.com/funcy/functions_go/client/version/get_version_parameters.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/version/get_version_responses.go b/cli/vendor/github.com/funcy/functions_go/client/version/get_version_responses.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/version/get_version_responses.go rename to cli/vendor/github.com/funcy/functions_go/client/version/get_version_responses.go diff --git a/fn/vendor/github.com/funcy/functions_go/client/version/version_client.go b/cli/vendor/github.com/funcy/functions_go/client/version/version_client.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/client/version/version_client.go rename to cli/vendor/github.com/funcy/functions_go/client/version/version_client.go diff --git a/fn/vendor/github.com/funcy/functions_go/configuration.go b/cli/vendor/github.com/funcy/functions_go/configuration.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/configuration.go rename to cli/vendor/github.com/funcy/functions_go/configuration.go diff --git a/fn/vendor/github.com/funcy/functions_go/docs/App.md b/cli/vendor/github.com/funcy/functions_go/docs/App.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/App.md rename to cli/vendor/github.com/funcy/functions_go/docs/App.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/AppWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/AppWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/AppWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/AppWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/AppsApi.md b/cli/vendor/github.com/funcy/functions_go/docs/AppsApi.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/AppsApi.md rename to cli/vendor/github.com/funcy/functions_go/docs/AppsApi.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/AppsWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/AppsWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/AppsWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/AppsWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/ErrorBody.md b/cli/vendor/github.com/funcy/functions_go/docs/ErrorBody.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/ErrorBody.md rename to cli/vendor/github.com/funcy/functions_go/docs/ErrorBody.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/ModelError.md b/cli/vendor/github.com/funcy/functions_go/docs/ModelError.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/ModelError.md rename to cli/vendor/github.com/funcy/functions_go/docs/ModelError.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/NewTask.md b/cli/vendor/github.com/funcy/functions_go/docs/NewTask.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/NewTask.md rename to cli/vendor/github.com/funcy/functions_go/docs/NewTask.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/NewTasksWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/NewTasksWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/NewTasksWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/NewTasksWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/Route.md b/cli/vendor/github.com/funcy/functions_go/docs/Route.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/Route.md rename to cli/vendor/github.com/funcy/functions_go/docs/Route.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/RouteWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/RouteWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/RouteWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/RouteWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/RoutesApi.md b/cli/vendor/github.com/funcy/functions_go/docs/RoutesApi.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/RoutesApi.md rename to cli/vendor/github.com/funcy/functions_go/docs/RoutesApi.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/RoutesWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/RoutesWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/RoutesWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/RoutesWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/Task.md b/cli/vendor/github.com/funcy/functions_go/docs/Task.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/Task.md rename to cli/vendor/github.com/funcy/functions_go/docs/Task.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/TaskWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/TaskWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/TaskWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/TaskWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/TasksApi.md b/cli/vendor/github.com/funcy/functions_go/docs/TasksApi.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/TasksApi.md rename to cli/vendor/github.com/funcy/functions_go/docs/TasksApi.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/TasksWrapper.md b/cli/vendor/github.com/funcy/functions_go/docs/TasksWrapper.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/TasksWrapper.md rename to cli/vendor/github.com/funcy/functions_go/docs/TasksWrapper.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/Version.md b/cli/vendor/github.com/funcy/functions_go/docs/Version.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/Version.md rename to cli/vendor/github.com/funcy/functions_go/docs/Version.md diff --git a/fn/vendor/github.com/funcy/functions_go/docs/VersionApi.md b/cli/vendor/github.com/funcy/functions_go/docs/VersionApi.md similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/docs/VersionApi.md rename to cli/vendor/github.com/funcy/functions_go/docs/VersionApi.md diff --git a/fn/vendor/github.com/funcy/functions_go/error_body.go b/cli/vendor/github.com/funcy/functions_go/error_body.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/error_body.go rename to cli/vendor/github.com/funcy/functions_go/error_body.go diff --git a/fn/vendor/github.com/funcy/functions_go/git_push.sh b/cli/vendor/github.com/funcy/functions_go/git_push.sh similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/git_push.sh rename to cli/vendor/github.com/funcy/functions_go/git_push.sh diff --git a/fn/vendor/github.com/funcy/functions_go/glide.lock b/cli/vendor/github.com/funcy/functions_go/glide.lock similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/glide.lock rename to cli/vendor/github.com/funcy/functions_go/glide.lock diff --git a/fn/vendor/github.com/funcy/functions_go/glide.yaml b/cli/vendor/github.com/funcy/functions_go/glide.yaml similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/glide.yaml rename to cli/vendor/github.com/funcy/functions_go/glide.yaml diff --git a/fn/vendor/github.com/funcy/functions_go/model_error.go b/cli/vendor/github.com/funcy/functions_go/model_error.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/model_error.go rename to cli/vendor/github.com/funcy/functions_go/model_error.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/app.go b/cli/vendor/github.com/funcy/functions_go/models/app.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/app.go rename to cli/vendor/github.com/funcy/functions_go/models/app.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/app_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/app_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/app_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/app_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/apps_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/apps_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/apps_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/apps_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/call.go b/cli/vendor/github.com/funcy/functions_go/models/call.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/call.go rename to cli/vendor/github.com/funcy/functions_go/models/call.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/call_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/call_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/call_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/call_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/calls_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/calls_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/calls_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/calls_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/error.go b/cli/vendor/github.com/funcy/functions_go/models/error.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/error.go rename to cli/vendor/github.com/funcy/functions_go/models/error.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/error_body.go b/cli/vendor/github.com/funcy/functions_go/models/error_body.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/error_body.go rename to cli/vendor/github.com/funcy/functions_go/models/error_body.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/log.go b/cli/vendor/github.com/funcy/functions_go/models/log.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/log.go rename to cli/vendor/github.com/funcy/functions_go/models/log.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/log_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/log_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/log_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/log_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/new_task.go b/cli/vendor/github.com/funcy/functions_go/models/new_task.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/new_task.go rename to cli/vendor/github.com/funcy/functions_go/models/new_task.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/route.go b/cli/vendor/github.com/funcy/functions_go/models/route.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/route.go rename to cli/vendor/github.com/funcy/functions_go/models/route.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/route_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/route_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/route_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/route_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/routes_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/routes_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/routes_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/routes_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/task.go b/cli/vendor/github.com/funcy/functions_go/models/task.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/task.go rename to cli/vendor/github.com/funcy/functions_go/models/task.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/task_wrapper.go b/cli/vendor/github.com/funcy/functions_go/models/task_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/task_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/models/task_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/models/version.go b/cli/vendor/github.com/funcy/functions_go/models/version.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/models/version.go rename to cli/vendor/github.com/funcy/functions_go/models/version.go diff --git a/fn/vendor/github.com/funcy/functions_go/new_task.go b/cli/vendor/github.com/funcy/functions_go/new_task.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/new_task.go rename to cli/vendor/github.com/funcy/functions_go/new_task.go diff --git a/fn/vendor/github.com/funcy/functions_go/new_tasks_wrapper.go b/cli/vendor/github.com/funcy/functions_go/new_tasks_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/new_tasks_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/new_tasks_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/pom.xml b/cli/vendor/github.com/funcy/functions_go/pom.xml similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/pom.xml rename to cli/vendor/github.com/funcy/functions_go/pom.xml diff --git a/fn/vendor/github.com/funcy/functions_go/route.go b/cli/vendor/github.com/funcy/functions_go/route.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/route.go rename to cli/vendor/github.com/funcy/functions_go/route.go diff --git a/fn/vendor/github.com/funcy/functions_go/route_wrapper.go b/cli/vendor/github.com/funcy/functions_go/route_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/route_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/route_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/routes_api.go b/cli/vendor/github.com/funcy/functions_go/routes_api.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/routes_api.go rename to cli/vendor/github.com/funcy/functions_go/routes_api.go diff --git a/fn/vendor/github.com/funcy/functions_go/routes_wrapper.go b/cli/vendor/github.com/funcy/functions_go/routes_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/routes_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/routes_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/task.go b/cli/vendor/github.com/funcy/functions_go/task.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/task.go rename to cli/vendor/github.com/funcy/functions_go/task.go diff --git a/fn/vendor/github.com/funcy/functions_go/task_wrapper.go b/cli/vendor/github.com/funcy/functions_go/task_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/task_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/task_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/tasks_api.go b/cli/vendor/github.com/funcy/functions_go/tasks_api.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/tasks_api.go rename to cli/vendor/github.com/funcy/functions_go/tasks_api.go diff --git a/fn/vendor/github.com/funcy/functions_go/tasks_wrapper.go b/cli/vendor/github.com/funcy/functions_go/tasks_wrapper.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/tasks_wrapper.go rename to cli/vendor/github.com/funcy/functions_go/tasks_wrapper.go diff --git a/fn/vendor/github.com/funcy/functions_go/version.go b/cli/vendor/github.com/funcy/functions_go/version.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/version.go rename to cli/vendor/github.com/funcy/functions_go/version.go diff --git a/fn/vendor/github.com/funcy/functions_go/version_api.go b/cli/vendor/github.com/funcy/functions_go/version_api.go similarity index 100% rename from fn/vendor/github.com/funcy/functions_go/version_api.go rename to cli/vendor/github.com/funcy/functions_go/version_api.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/.gitignore b/cli/vendor/github.com/giantswarm/semver-bump/.gitignore similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/.gitignore rename to cli/vendor/github.com/giantswarm/semver-bump/.gitignore diff --git a/fn/vendor/github.com/giantswarm/semver-bump/LICENSE b/cli/vendor/github.com/giantswarm/semver-bump/LICENSE similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/LICENSE rename to cli/vendor/github.com/giantswarm/semver-bump/LICENSE diff --git a/fn/vendor/github.com/giantswarm/semver-bump/Makefile b/cli/vendor/github.com/giantswarm/semver-bump/Makefile similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/Makefile rename to cli/vendor/github.com/giantswarm/semver-bump/Makefile diff --git a/fn/vendor/github.com/giantswarm/semver-bump/README.md b/cli/vendor/github.com/giantswarm/semver-bump/README.md similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/README.md rename to cli/vendor/github.com/giantswarm/semver-bump/README.md diff --git a/fn/vendor/github.com/giantswarm/semver-bump/VERSION b/cli/vendor/github.com/giantswarm/semver-bump/VERSION similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/VERSION rename to cli/vendor/github.com/giantswarm/semver-bump/VERSION diff --git a/fn/vendor/github.com/giantswarm/semver-bump/bump/bump.go b/cli/vendor/github.com/giantswarm/semver-bump/bump/bump.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/bump/bump.go rename to cli/vendor/github.com/giantswarm/semver-bump/bump/bump.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/bump_major.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/bump_major.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/bump_major.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/bump_major.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/bump_minor.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/bump_minor.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/bump_minor.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/bump_minor.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/bump_patch.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/bump_patch.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/bump_patch.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/bump_patch.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/init.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/init.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/init.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/init.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/semver_bump.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/semver_bump.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/semver_bump.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/semver_bump.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/util.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/util.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/util.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/util.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/commands/version.go b/cli/vendor/github.com/giantswarm/semver-bump/commands/version.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/commands/version.go rename to cli/vendor/github.com/giantswarm/semver-bump/commands/version.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/main.go b/cli/vendor/github.com/giantswarm/semver-bump/main.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/main.go rename to cli/vendor/github.com/giantswarm/semver-bump/main.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage.go b/cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage.go rename to cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage_file.go b/cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage_file.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage_file.go rename to cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage_file.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage_local.go b/cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage_local.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage_local.go rename to cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage_local.go diff --git a/fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage_util.go b/cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage_util.go similarity index 100% rename from fn/vendor/github.com/giantswarm/semver-bump/storage/version_storage_util.go rename to cli/vendor/github.com/giantswarm/semver-bump/storage/version_storage_util.go diff --git a/fn/vendor/github.com/go-ini/ini/.gitignore b/cli/vendor/github.com/go-ini/ini/.gitignore similarity index 100% rename from fn/vendor/github.com/go-ini/ini/.gitignore rename to cli/vendor/github.com/go-ini/ini/.gitignore diff --git a/fn/vendor/github.com/go-ini/ini/.travis.yml b/cli/vendor/github.com/go-ini/ini/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-ini/ini/.travis.yml rename to cli/vendor/github.com/go-ini/ini/.travis.yml diff --git a/fn/vendor/github.com/go-ini/ini/LICENSE b/cli/vendor/github.com/go-ini/ini/LICENSE similarity index 100% rename from fn/vendor/github.com/go-ini/ini/LICENSE rename to cli/vendor/github.com/go-ini/ini/LICENSE diff --git a/fn/vendor/github.com/go-ini/ini/Makefile b/cli/vendor/github.com/go-ini/ini/Makefile similarity index 100% rename from fn/vendor/github.com/go-ini/ini/Makefile rename to cli/vendor/github.com/go-ini/ini/Makefile diff --git a/fn/vendor/github.com/go-ini/ini/README.md b/cli/vendor/github.com/go-ini/ini/README.md similarity index 100% rename from fn/vendor/github.com/go-ini/ini/README.md rename to cli/vendor/github.com/go-ini/ini/README.md diff --git a/fn/vendor/github.com/go-ini/ini/README_ZH.md b/cli/vendor/github.com/go-ini/ini/README_ZH.md similarity index 100% rename from fn/vendor/github.com/go-ini/ini/README_ZH.md rename to cli/vendor/github.com/go-ini/ini/README_ZH.md diff --git a/fn/vendor/github.com/go-ini/ini/error.go b/cli/vendor/github.com/go-ini/ini/error.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/error.go rename to cli/vendor/github.com/go-ini/ini/error.go diff --git a/fn/vendor/github.com/go-ini/ini/ini.go b/cli/vendor/github.com/go-ini/ini/ini.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/ini.go rename to cli/vendor/github.com/go-ini/ini/ini.go diff --git a/fn/vendor/github.com/go-ini/ini/ini_test.go b/cli/vendor/github.com/go-ini/ini/ini_test.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/ini_test.go rename to cli/vendor/github.com/go-ini/ini/ini_test.go diff --git a/fn/vendor/github.com/go-ini/ini/key.go b/cli/vendor/github.com/go-ini/ini/key.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/key.go rename to cli/vendor/github.com/go-ini/ini/key.go diff --git a/fn/vendor/github.com/go-ini/ini/key_test.go b/cli/vendor/github.com/go-ini/ini/key_test.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/key_test.go rename to cli/vendor/github.com/go-ini/ini/key_test.go diff --git a/fn/vendor/github.com/go-ini/ini/parser.go b/cli/vendor/github.com/go-ini/ini/parser.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/parser.go rename to cli/vendor/github.com/go-ini/ini/parser.go diff --git a/fn/vendor/github.com/go-ini/ini/parser_test.go b/cli/vendor/github.com/go-ini/ini/parser_test.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/parser_test.go rename to cli/vendor/github.com/go-ini/ini/parser_test.go diff --git a/fn/vendor/github.com/go-ini/ini/section.go b/cli/vendor/github.com/go-ini/ini/section.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/section.go rename to cli/vendor/github.com/go-ini/ini/section.go diff --git a/fn/vendor/github.com/go-ini/ini/section_test.go b/cli/vendor/github.com/go-ini/ini/section_test.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/section_test.go rename to cli/vendor/github.com/go-ini/ini/section_test.go diff --git a/fn/vendor/github.com/go-ini/ini/struct.go b/cli/vendor/github.com/go-ini/ini/struct.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/struct.go rename to cli/vendor/github.com/go-ini/ini/struct.go diff --git a/fn/vendor/github.com/go-ini/ini/struct_test.go b/cli/vendor/github.com/go-ini/ini/struct_test.go similarity index 100% rename from fn/vendor/github.com/go-ini/ini/struct_test.go rename to cli/vendor/github.com/go-ini/ini/struct_test.go diff --git a/fn/vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini b/cli/vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini similarity index 100% rename from fn/vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini rename to cli/vendor/github.com/go-ini/ini/testdata/UTF-16-BE-BOM.ini diff --git a/fn/vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini b/cli/vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini similarity index 100% rename from fn/vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini rename to cli/vendor/github.com/go-ini/ini/testdata/UTF-16-LE-BOM.ini diff --git a/fn/vendor/github.com/go-ini/ini/testdata/UTF-8-BOM.ini b/cli/vendor/github.com/go-ini/ini/testdata/UTF-8-BOM.ini similarity index 100% rename from fn/vendor/github.com/go-ini/ini/testdata/UTF-8-BOM.ini rename to cli/vendor/github.com/go-ini/ini/testdata/UTF-8-BOM.ini diff --git a/fn/vendor/github.com/go-ini/ini/testdata/aicc.ini b/cli/vendor/github.com/go-ini/ini/testdata/aicc.ini similarity index 100% rename from fn/vendor/github.com/go-ini/ini/testdata/aicc.ini rename to cli/vendor/github.com/go-ini/ini/testdata/aicc.ini diff --git a/fn/vendor/github.com/go-ini/ini/testdata/conf.ini b/cli/vendor/github.com/go-ini/ini/testdata/conf.ini similarity index 100% rename from fn/vendor/github.com/go-ini/ini/testdata/conf.ini rename to cli/vendor/github.com/go-ini/ini/testdata/conf.ini diff --git a/fn/vendor/github.com/go-openapi/analysis/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/analysis/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/analysis/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/analysis/.gitignore b/cli/vendor/github.com/go-openapi/analysis/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/.gitignore rename to cli/vendor/github.com/go-openapi/analysis/.gitignore diff --git a/fn/vendor/github.com/go-openapi/analysis/.travis.yml b/cli/vendor/github.com/go-openapi/analysis/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/.travis.yml rename to cli/vendor/github.com/go-openapi/analysis/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/analysis/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/analysis/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/analysis/LICENSE b/cli/vendor/github.com/go-openapi/analysis/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/LICENSE rename to cli/vendor/github.com/go-openapi/analysis/LICENSE diff --git a/fn/vendor/github.com/go-openapi/analysis/README.md b/cli/vendor/github.com/go-openapi/analysis/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/README.md rename to cli/vendor/github.com/go-openapi/analysis/README.md diff --git a/fn/vendor/github.com/go-openapi/analysis/analyzer.go b/cli/vendor/github.com/go-openapi/analysis/analyzer.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/analyzer.go rename to cli/vendor/github.com/go-openapi/analysis/analyzer.go diff --git a/fn/vendor/github.com/go-openapi/analysis/analyzer_test.go b/cli/vendor/github.com/go-openapi/analysis/analyzer_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/analyzer_test.go rename to cli/vendor/github.com/go-openapi/analysis/analyzer_test.go diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/allOf.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/allOf.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/allOf.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/allOf.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/bar-crud.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/bar-crud.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/bar-crud.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/bar-crud.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/definitions.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/definitions.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/definitions.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/definitions.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/definitions.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/definitions.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/definitions.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/definitions.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/definitions2.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/definitions2.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/definitions2.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/definitions2.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/errors.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/errors.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/errors.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/errors.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/nestedParams.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/nestedParams.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/nestedParams.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/nestedParams.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/nestedResponses.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/nestedResponses.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/nestedResponses.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/nestedResponses.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/parameters.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/parameters.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/parameters.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/parameters.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/pathItem.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/pathItem.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/pathItem.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/pathItem.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external/responses.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external/responses.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external/responses.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external/responses.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/external_definitions.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/external_definitions.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/external_definitions.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/external_definitions.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/flatten.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/flatten.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/flatten.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/flatten.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/foo-crud.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/foo-crud.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/foo-crud.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/foo-crud.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/inline_schemas.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/inline_schemas.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/inline_schemas.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/inline_schemas.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/nested_inline_schemas.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/nested_inline_schemas.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/nested_inline_schemas.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/nested_inline_schemas.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/no-paths.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/no-paths.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/no-paths.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/no-paths.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/patterns.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/patterns.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/patterns.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/patterns.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/references.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/references.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/references.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/references.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/fixtures/widget-crud.yml b/cli/vendor/github.com/go-openapi/analysis/fixtures/widget-crud.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/fixtures/widget-crud.yml rename to cli/vendor/github.com/go-openapi/analysis/fixtures/widget-crud.yml diff --git a/fn/vendor/github.com/go-openapi/analysis/flatten.go b/cli/vendor/github.com/go-openapi/analysis/flatten.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/flatten.go rename to cli/vendor/github.com/go-openapi/analysis/flatten.go diff --git a/fn/vendor/github.com/go-openapi/analysis/flatten_test.go b/cli/vendor/github.com/go-openapi/analysis/flatten_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/flatten_test.go rename to cli/vendor/github.com/go-openapi/analysis/flatten_test.go diff --git a/fn/vendor/github.com/go-openapi/analysis/mixin.go b/cli/vendor/github.com/go-openapi/analysis/mixin.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/mixin.go rename to cli/vendor/github.com/go-openapi/analysis/mixin.go diff --git a/fn/vendor/github.com/go-openapi/analysis/mixin_test.go b/cli/vendor/github.com/go-openapi/analysis/mixin_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/mixin_test.go rename to cli/vendor/github.com/go-openapi/analysis/mixin_test.go diff --git a/fn/vendor/github.com/go-openapi/analysis/schema.go b/cli/vendor/github.com/go-openapi/analysis/schema.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/schema.go rename to cli/vendor/github.com/go-openapi/analysis/schema.go diff --git a/fn/vendor/github.com/go-openapi/analysis/schema_test.go b/cli/vendor/github.com/go-openapi/analysis/schema_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/analysis/schema_test.go rename to cli/vendor/github.com/go-openapi/analysis/schema_test.go diff --git a/fn/vendor/github.com/go-openapi/errors/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/errors/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/errors/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/errors/.gitignore b/cli/vendor/github.com/go-openapi/errors/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/.gitignore rename to cli/vendor/github.com/go-openapi/errors/.gitignore diff --git a/fn/vendor/github.com/go-openapi/errors/.travis.yml b/cli/vendor/github.com/go-openapi/errors/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/.travis.yml rename to cli/vendor/github.com/go-openapi/errors/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/errors/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/errors/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/errors/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/errors/LICENSE b/cli/vendor/github.com/go-openapi/errors/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/LICENSE rename to cli/vendor/github.com/go-openapi/errors/LICENSE diff --git a/fn/vendor/github.com/go-openapi/errors/README.md b/cli/vendor/github.com/go-openapi/errors/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/README.md rename to cli/vendor/github.com/go-openapi/errors/README.md diff --git a/fn/vendor/github.com/go-openapi/errors/api.go b/cli/vendor/github.com/go-openapi/errors/api.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/api.go rename to cli/vendor/github.com/go-openapi/errors/api.go diff --git a/fn/vendor/github.com/go-openapi/errors/api_test.go b/cli/vendor/github.com/go-openapi/errors/api_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/api_test.go rename to cli/vendor/github.com/go-openapi/errors/api_test.go diff --git a/fn/vendor/github.com/go-openapi/errors/auth.go b/cli/vendor/github.com/go-openapi/errors/auth.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/auth.go rename to cli/vendor/github.com/go-openapi/errors/auth.go diff --git a/fn/vendor/github.com/go-openapi/errors/auth_test.go b/cli/vendor/github.com/go-openapi/errors/auth_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/auth_test.go rename to cli/vendor/github.com/go-openapi/errors/auth_test.go diff --git a/fn/vendor/github.com/go-openapi/errors/headers.go b/cli/vendor/github.com/go-openapi/errors/headers.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/headers.go rename to cli/vendor/github.com/go-openapi/errors/headers.go diff --git a/fn/vendor/github.com/go-openapi/errors/middleware.go b/cli/vendor/github.com/go-openapi/errors/middleware.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/middleware.go rename to cli/vendor/github.com/go-openapi/errors/middleware.go diff --git a/fn/vendor/github.com/go-openapi/errors/middleware_test.go b/cli/vendor/github.com/go-openapi/errors/middleware_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/middleware_test.go rename to cli/vendor/github.com/go-openapi/errors/middleware_test.go diff --git a/fn/vendor/github.com/go-openapi/errors/parsing.go b/cli/vendor/github.com/go-openapi/errors/parsing.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/parsing.go rename to cli/vendor/github.com/go-openapi/errors/parsing.go diff --git a/fn/vendor/github.com/go-openapi/errors/parsing_test.go b/cli/vendor/github.com/go-openapi/errors/parsing_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/parsing_test.go rename to cli/vendor/github.com/go-openapi/errors/parsing_test.go diff --git a/fn/vendor/github.com/go-openapi/errors/schema.go b/cli/vendor/github.com/go-openapi/errors/schema.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/schema.go rename to cli/vendor/github.com/go-openapi/errors/schema.go diff --git a/fn/vendor/github.com/go-openapi/errors/schema_test.go b/cli/vendor/github.com/go-openapi/errors/schema_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/errors/schema_test.go rename to cli/vendor/github.com/go-openapi/errors/schema_test.go diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/.editorconfig b/cli/vendor/github.com/go-openapi/jsonpointer/.editorconfig similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/.editorconfig rename to cli/vendor/github.com/go-openapi/jsonpointer/.editorconfig diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/jsonpointer/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/jsonpointer/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/.gitignore b/cli/vendor/github.com/go-openapi/jsonpointer/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/.gitignore rename to cli/vendor/github.com/go-openapi/jsonpointer/.gitignore diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/.travis.yml b/cli/vendor/github.com/go-openapi/jsonpointer/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/.travis.yml rename to cli/vendor/github.com/go-openapi/jsonpointer/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/jsonpointer/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/jsonpointer/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/LICENSE b/cli/vendor/github.com/go-openapi/jsonpointer/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/LICENSE rename to cli/vendor/github.com/go-openapi/jsonpointer/LICENSE diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/README.md b/cli/vendor/github.com/go-openapi/jsonpointer/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/README.md rename to cli/vendor/github.com/go-openapi/jsonpointer/README.md diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/pointer.go b/cli/vendor/github.com/go-openapi/jsonpointer/pointer.go similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/pointer.go rename to cli/vendor/github.com/go-openapi/jsonpointer/pointer.go diff --git a/fn/vendor/github.com/go-openapi/jsonpointer/pointer_test.go b/cli/vendor/github.com/go-openapi/jsonpointer/pointer_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonpointer/pointer_test.go rename to cli/vendor/github.com/go-openapi/jsonpointer/pointer_test.go diff --git a/fn/vendor/github.com/go-openapi/jsonreference/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/jsonreference/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/jsonreference/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/jsonreference/.gitignore b/cli/vendor/github.com/go-openapi/jsonreference/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/.gitignore rename to cli/vendor/github.com/go-openapi/jsonreference/.gitignore diff --git a/fn/vendor/github.com/go-openapi/jsonreference/.travis.yml b/cli/vendor/github.com/go-openapi/jsonreference/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/.travis.yml rename to cli/vendor/github.com/go-openapi/jsonreference/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/jsonreference/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/jsonreference/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/jsonreference/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/jsonreference/LICENSE b/cli/vendor/github.com/go-openapi/jsonreference/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/LICENSE rename to cli/vendor/github.com/go-openapi/jsonreference/LICENSE diff --git a/fn/vendor/github.com/go-openapi/jsonreference/README.md b/cli/vendor/github.com/go-openapi/jsonreference/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/README.md rename to cli/vendor/github.com/go-openapi/jsonreference/README.md diff --git a/fn/vendor/github.com/go-openapi/jsonreference/reference.go b/cli/vendor/github.com/go-openapi/jsonreference/reference.go similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/reference.go rename to cli/vendor/github.com/go-openapi/jsonreference/reference.go diff --git a/fn/vendor/github.com/go-openapi/jsonreference/reference_test.go b/cli/vendor/github.com/go-openapi/jsonreference/reference_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/jsonreference/reference_test.go rename to cli/vendor/github.com/go-openapi/jsonreference/reference_test.go diff --git a/fn/vendor/github.com/go-openapi/loads/.drone.sec b/cli/vendor/github.com/go-openapi/loads/.drone.sec similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/.drone.sec rename to cli/vendor/github.com/go-openapi/loads/.drone.sec diff --git a/fn/vendor/github.com/go-openapi/loads/.drone.yml b/cli/vendor/github.com/go-openapi/loads/.drone.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/.drone.yml rename to cli/vendor/github.com/go-openapi/loads/.drone.yml diff --git a/fn/vendor/github.com/go-openapi/loads/.editorconfig b/cli/vendor/github.com/go-openapi/loads/.editorconfig similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/.editorconfig rename to cli/vendor/github.com/go-openapi/loads/.editorconfig diff --git a/fn/vendor/github.com/go-openapi/loads/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/loads/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/loads/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/loads/.gitignore b/cli/vendor/github.com/go-openapi/loads/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/.gitignore rename to cli/vendor/github.com/go-openapi/loads/.gitignore diff --git a/fn/vendor/github.com/go-openapi/loads/.travis.yml b/cli/vendor/github.com/go-openapi/loads/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/.travis.yml rename to cli/vendor/github.com/go-openapi/loads/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/loads/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/loads/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/loads/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/loads/LICENSE b/cli/vendor/github.com/go-openapi/loads/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/LICENSE rename to cli/vendor/github.com/go-openapi/loads/LICENSE diff --git a/fn/vendor/github.com/go-openapi/loads/README.md b/cli/vendor/github.com/go-openapi/loads/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/README.md rename to cli/vendor/github.com/go-openapi/loads/README.md diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithArrayRef.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithArrayRef.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithArrayRef.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithArrayRef.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithComposition.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithComposition.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithComposition.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithComposition.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithDateTimeMap.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithDateTimeMap.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithDateTimeMap.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithDateTimeMap.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithExamples.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithExamples.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithExamples.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithExamples.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt32Map.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt32Map.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt32Map.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt32Map.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt64Map.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt64Map.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt64Map.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithInt64Map.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithMultipleProperties.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithMultipleProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithMultipleProperties.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithMultipleProperties.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithObjectMap.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithObjectMap.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithObjectMap.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithObjectMap.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithPrimitiveArray.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithPrimitiveArray.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithPrimitiveArray.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithPrimitiveArray.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithStringProperty.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithStringProperty.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithStringProperty.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithStringProperty.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithXmlAttributes.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithXmlAttributes.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithXmlAttributes.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/modelWithXmlAttributes.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/models.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/models.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/models.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/models.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/multipleModels.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/multipleModels.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/multipleModels.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/multipleModels.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithBooleanArray.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithBooleanArray.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithBooleanArray.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithBooleanArray.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithByteArray.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithByteArray.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithByteArray.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithByteArray.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithComplexArray.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithComplexArray.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithComplexArray.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithComplexArray.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithDateTimeArray.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithDateTimeArray.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithDateTimeArray.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithDateTimeArray.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt32Array.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt32Array.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt32Array.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt32Array.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt64Array.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt64Array.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt64Array.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithInt64Array.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithRef.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithRef.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithRef.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithRef.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithStringArray.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithStringArray.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithStringArray.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/propertyWithStringArray.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleBooleanProperty.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleBooleanProperty.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleBooleanProperty.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleBooleanProperty.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleByteProperty.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleByteProperty.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleByteProperty.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleByteProperty.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleDateTimeProperty.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleDateTimeProperty.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleDateTimeProperty.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleDateTimeProperty.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt32Property.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt32Property.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt32Property.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt32Property.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt64Property.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt64Property.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt64Property.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleInt64Property.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleStringProperty.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleStringProperty.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleStringProperty.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/models/properties/simpleStringProperty.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/cascadingSchemes.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/cascadingSchemes.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/cascadingSchemes.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/cascadingSchemes.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/commonParameters.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/commonParameters.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/commonParameters.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/commonParameters.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/multipleMimeTypes.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/multipleMimeTypes.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/multipleMimeTypes.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/multipleMimeTypes.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/operationWithTags.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/operationWithTags.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/operationWithTags.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/operationWithTags.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathAndBoolQueryParamResource.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathAndBoolQueryParamResource.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathAndBoolQueryParamResource.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathAndBoolQueryParamResource.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathParamResource.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathParamResource.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathParamResource.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/operations/stringPathParamResource.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyComplexParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyInt64Parameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyInt64Parameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyInt64Parameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyInt64Parameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/bodyStringParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataComplexParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataComplexParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataComplexParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataComplexParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataInt64Parameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataInt64Parameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataInt64Parameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataInt64Parameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/formDataStringParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerInt64ArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerInt64ArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerInt64ArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerInt64ArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/headerStringParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathInt64Parameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathInt64Parameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathInt64Parameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathInt64Parameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/pathStringParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryInt64ArrayParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryInt64ArrayParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryInt64ArrayParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryInt64ArrayParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryStringParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryStringParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryStringParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryStringParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryWithComplexParameter.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryWithComplexParameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryWithComplexParameter.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/parameters/queryWithComplexParameter.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithExamplePayload.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithExamplePayload.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithExamplePayload.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithExamplePayload.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions_part1.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions_part1.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions_part1.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithLinkedDefinitions_part1.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithRelativeHost.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithRelativeHost.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithRelativeHost.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/resourceWithRelativeHost.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/reusableParameters.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/reusableParameters.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/reusableParameters.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/reusableParameters.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/securityExample.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/securityExample.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/securityExample.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/securityExample.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/stringPathParamResource.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/stringPathParamResource.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/stringPathParamResource.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/stringPathParamResource.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/taggedResource.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/taggedResource.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/taggedResource.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/taggedResource.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/vendorExtensionExamples.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/vendorExtensionExamples.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/resources/vendorExtensionExamples.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/resources/vendorExtensionExamples.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/complexArrayResponse.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/complexArrayResponse.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/complexArrayResponse.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/complexArrayResponse.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/dateTimeResponse.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/dateTimeResponse.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/dateTimeResponse.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/dateTimeResponse.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/int32Response.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/int32Response.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/int32Response.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/int32Response.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/int64Response.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/int64Response.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/int64Response.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/int64Response.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/multipleResponses.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/multipleResponses.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/multipleResponses.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/multipleResponses.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringArrayResponse.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringArrayResponse.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringArrayResponse.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringArrayResponse.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponse.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponse.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponse.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponse.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponseWithHeader.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponseWithHeader.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponseWithHeader.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/stringResponseWithHeader.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/voidResponse.json b/cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/voidResponse.json similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/json/responses/voidResponse.json rename to cli/vendor/github.com/go-openapi/loads/fixtures/json/responses/voidResponse.json diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/.gitkeep b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/.gitkeep similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/.gitkeep rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/.gitkeep diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithArrayRef.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithArrayRef.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithArrayRef.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithArrayRef.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithComposition.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithComposition.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithComposition.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithComposition.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithDateTimeMap.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithDateTimeMap.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithDateTimeMap.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithDateTimeMap.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithExamples.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithExamples.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithExamples.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithExamples.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt32Map.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt32Map.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt32Map.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt32Map.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt64Map.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt64Map.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt64Map.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithInt64Map.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithMultipleProperties.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithMultipleProperties.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithMultipleProperties.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithMultipleProperties.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithObjectMap.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithObjectMap.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithObjectMap.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithObjectMap.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithPrimitiveArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithPrimitiveArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithPrimitiveArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithPrimitiveArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithStringProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithStringProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithStringProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithStringProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithXmlAttributes.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithXmlAttributes.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithXmlAttributes.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/modelWithXmlAttributes.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/models.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/models.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/models.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/models.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/multipleModels.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/multipleModels.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/multipleModels.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/multipleModels.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithBooleanArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithBooleanArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithBooleanArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithBooleanArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithByteArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithByteArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithByteArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithByteArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithComplexArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithComplexArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithComplexArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithComplexArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithDateTimeArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithDateTimeArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithDateTimeArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithDateTimeArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt32Array.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt32Array.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt32Array.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt32Array.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt64Array.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt64Array.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt64Array.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithInt64Array.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithRef.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithRef.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithRef.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithRef.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithStringArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithStringArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithStringArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/propertyWithStringArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleBooleanProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleBooleanProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleBooleanProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleBooleanProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleByteProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleByteProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleByteProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleByteProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleDateTimeProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleDateTimeProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleDateTimeProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleDateTimeProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt32Property.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt32Property.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt32Property.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt32Property.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt64Property.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt64Property.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt64Property.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleInt64Property.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleStringProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleStringProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleStringProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/models/properties/simpleStringProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/cascadingSchemes.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/cascadingSchemes.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/cascadingSchemes.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/cascadingSchemes.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/commonParameters.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/commonParameters.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/commonParameters.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/commonParameters.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/multipleMimeTypes.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/multipleMimeTypes.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/multipleMimeTypes.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/multipleMimeTypes.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/operationWithTags.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/operationWithTags.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/operationWithTags.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/operationWithTags.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathParamResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathParamResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathParamResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/operations/stringPathParamResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyComplexParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyInt64Parameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyInt64Parameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyInt64Parameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyInt64Parameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/bodyStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataComplexParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataComplexParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataComplexParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataComplexParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataInt64Parameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataInt64Parameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataInt64Parameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataInt64Parameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/formDataStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerInt64ArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerInt64ArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerInt64ArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerInt64ArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/headerStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathInt64Parameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathInt64Parameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathInt64Parameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathInt64Parameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/pathStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryInt64ArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryInt64ArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryInt64ArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryInt64ArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryWithComplexParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryWithComplexParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryWithComplexParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/parameters/queryWithComplexParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithExamplePayload.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithExamplePayload.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithExamplePayload.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithExamplePayload.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions_part1.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions_part1.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions_part1.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithLinkedDefinitions_part1.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithRelativeHost.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithRelativeHost.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithRelativeHost.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/resourceWithRelativeHost.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/reusableParameters.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/reusableParameters.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/reusableParameters.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/reusableParameters.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/securityExample.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/securityExample.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/securityExample.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/securityExample.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/stringPathParamResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/stringPathParamResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/stringPathParamResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/stringPathParamResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/taggedResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/taggedResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/taggedResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/taggedResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/vendorExtensionExamples.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/vendorExtensionExamples.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/vendorExtensionExamples.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/resources/vendorExtensionExamples.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/complexArrayResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/complexArrayResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/complexArrayResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/complexArrayResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/dateTimeResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/dateTimeResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/dateTimeResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/dateTimeResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int32Response.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int32Response.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int32Response.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int32Response.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int64Response.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int64Response.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int64Response.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/int64Response.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/multipleResponses.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/multipleResponses.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/multipleResponses.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/multipleResponses.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringArrayResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringArrayResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringArrayResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringArrayResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponseWithHeader.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponseWithHeader.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponseWithHeader.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/stringResponseWithHeader.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/voidResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/voidResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/voidResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/responses/voidResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/.gitkeep b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/.gitkeep similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/.gitkeep rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/.gitkeep diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithArrayRef.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithArrayRef.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithArrayRef.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithArrayRef.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithComposition.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithComposition.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithComposition.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithComposition.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithDateTimeMap.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithDateTimeMap.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithDateTimeMap.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithDateTimeMap.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithExamples.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithExamples.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithExamples.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithExamples.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt32Map.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt32Map.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt32Map.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt32Map.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt64Map.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt64Map.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt64Map.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithInt64Map.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithMultipleProperties.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithMultipleProperties.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithMultipleProperties.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithMultipleProperties.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithObjectMap.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithObjectMap.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithObjectMap.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithObjectMap.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithPrimitiveArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithPrimitiveArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithPrimitiveArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithPrimitiveArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithStringProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithStringProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithStringProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithStringProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithXmlAttributes.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithXmlAttributes.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithXmlAttributes.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/modelWithXmlAttributes.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/models.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/models.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/models.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/models.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/multipleModels.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/multipleModels.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/multipleModels.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/multipleModels.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithBooleanArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithBooleanArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithBooleanArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithBooleanArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithByteArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithByteArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithByteArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithByteArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithComplexArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithComplexArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithComplexArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithComplexArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithDateTimeArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithDateTimeArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithDateTimeArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithDateTimeArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt32Array.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt32Array.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt32Array.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt32Array.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt64Array.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt64Array.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt64Array.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithInt64Array.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithRef.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithRef.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithRef.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithRef.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithStringArray.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithStringArray.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithStringArray.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/propertyWithStringArray.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleBooleanProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleBooleanProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleBooleanProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleBooleanProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleByteProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleByteProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleByteProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleByteProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleDateTimeProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleDateTimeProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleDateTimeProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleDateTimeProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt32Property.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt32Property.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt32Property.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt32Property.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt64Property.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt64Property.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt64Property.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleInt64Property.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleStringProperty.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleStringProperty.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleStringProperty.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/models/properties/simpleStringProperty.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/cascadingSchemes.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/cascadingSchemes.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/cascadingSchemes.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/cascadingSchemes.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/commonParameters.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/commonParameters.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/commonParameters.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/commonParameters.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/multipleMimeTypes.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/multipleMimeTypes.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/multipleMimeTypes.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/multipleMimeTypes.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/operationWithTags.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/operationWithTags.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/operationWithTags.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/operationWithTags.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathAndBoolQueryParamResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathParamResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathParamResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathParamResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/operations/stringPathParamResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyComplexParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyInt64Parameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyInt64Parameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyInt64Parameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyInt64Parameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/bodyStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataComplexParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataComplexParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataComplexParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataComplexParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataInt64Parameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataInt64Parameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataInt64Parameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataInt64Parameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/formDataStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerInt64ArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerInt64ArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerInt64ArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerInt64ArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/headerStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathInt64Parameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathInt64Parameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathInt64Parameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathInt64Parameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/pathStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryInt64ArrayParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryInt64ArrayParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryInt64ArrayParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryInt64ArrayParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryStringParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryStringParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryStringParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryStringParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryWithComplexParameter.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryWithComplexParameter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryWithComplexParameter.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/parameters/queryWithComplexParameter.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithExamplePayload.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithExamplePayload.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithExamplePayload.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithExamplePayload.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions_part1.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions_part1.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions_part1.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithLinkedDefinitions_part1.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithRelativeHost.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithRelativeHost.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithRelativeHost.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/resourceWithRelativeHost.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/reusableParameters.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/reusableParameters.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/reusableParameters.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/reusableParameters.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/securityExample.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/securityExample.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/securityExample.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/securityExample.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/stringPathParamResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/stringPathParamResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/stringPathParamResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/stringPathParamResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/taggedResource.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/taggedResource.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/taggedResource.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/taggedResource.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/vendorExtensionExamples.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/vendorExtensionExamples.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/vendorExtensionExamples.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/resources/vendorExtensionExamples.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/complexArrayResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/complexArrayResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/complexArrayResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/complexArrayResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/dateTimeResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/dateTimeResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/dateTimeResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/dateTimeResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int32Response.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int32Response.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int32Response.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int32Response.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int64Response.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int64Response.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int64Response.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/int64Response.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/multipleResponses.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/multipleResponses.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/multipleResponses.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/multipleResponses.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringArrayResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringArrayResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringArrayResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringArrayResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponseWithHeader.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponseWithHeader.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponseWithHeader.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/stringResponseWithHeader.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/voidResponse.yaml b/cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/voidResponse.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/voidResponse.yaml rename to cli/vendor/github.com/go-openapi/loads/fixtures/yaml/yaml/responses/voidResponse.yaml diff --git a/fn/vendor/github.com/go-openapi/loads/fmts/fixture_test.go b/cli/vendor/github.com/go-openapi/loads/fmts/fixture_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fmts/fixture_test.go rename to cli/vendor/github.com/go-openapi/loads/fmts/fixture_test.go diff --git a/fn/vendor/github.com/go-openapi/loads/fmts/yaml.go b/cli/vendor/github.com/go-openapi/loads/fmts/yaml.go similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fmts/yaml.go rename to cli/vendor/github.com/go-openapi/loads/fmts/yaml.go diff --git a/fn/vendor/github.com/go-openapi/loads/fmts/yaml_test.go b/cli/vendor/github.com/go-openapi/loads/fmts/yaml_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/fmts/yaml_test.go rename to cli/vendor/github.com/go-openapi/loads/fmts/yaml_test.go diff --git a/fn/vendor/github.com/go-openapi/loads/hack/build-drone.sh b/cli/vendor/github.com/go-openapi/loads/hack/build-drone.sh similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/hack/build-drone.sh rename to cli/vendor/github.com/go-openapi/loads/hack/build-drone.sh diff --git a/fn/vendor/github.com/go-openapi/loads/hack/coverage b/cli/vendor/github.com/go-openapi/loads/hack/coverage similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/hack/coverage rename to cli/vendor/github.com/go-openapi/loads/hack/coverage diff --git a/fn/vendor/github.com/go-openapi/loads/json_test.go b/cli/vendor/github.com/go-openapi/loads/json_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/json_test.go rename to cli/vendor/github.com/go-openapi/loads/json_test.go diff --git a/fn/vendor/github.com/go-openapi/loads/spec.go b/cli/vendor/github.com/go-openapi/loads/spec.go similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/spec.go rename to cli/vendor/github.com/go-openapi/loads/spec.go diff --git a/fn/vendor/github.com/go-openapi/loads/spec_test.go b/cli/vendor/github.com/go-openapi/loads/spec_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/loads/spec_test.go rename to cli/vendor/github.com/go-openapi/loads/spec_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/.editorconfig b/cli/vendor/github.com/go-openapi/runtime/.editorconfig similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/.editorconfig rename to cli/vendor/github.com/go-openapi/runtime/.editorconfig diff --git a/fn/vendor/github.com/go-openapi/runtime/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/runtime/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/runtime/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/runtime/.gitignore b/cli/vendor/github.com/go-openapi/runtime/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/.gitignore rename to cli/vendor/github.com/go-openapi/runtime/.gitignore diff --git a/fn/vendor/github.com/go-openapi/runtime/.travis.yml b/cli/vendor/github.com/go-openapi/runtime/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/.travis.yml rename to cli/vendor/github.com/go-openapi/runtime/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/runtime/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/runtime/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/runtime/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/runtime/LICENSE b/cli/vendor/github.com/go-openapi/runtime/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/LICENSE rename to cli/vendor/github.com/go-openapi/runtime/LICENSE diff --git a/fn/vendor/github.com/go-openapi/runtime/README.md b/cli/vendor/github.com/go-openapi/runtime/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/README.md rename to cli/vendor/github.com/go-openapi/runtime/README.md diff --git a/fn/vendor/github.com/go-openapi/runtime/authinfo_test.go b/cli/vendor/github.com/go-openapi/runtime/authinfo_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/authinfo_test.go rename to cli/vendor/github.com/go-openapi/runtime/authinfo_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/bytestream.go b/cli/vendor/github.com/go-openapi/runtime/bytestream.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/bytestream.go rename to cli/vendor/github.com/go-openapi/runtime/bytestream.go diff --git a/fn/vendor/github.com/go-openapi/runtime/bytestream_test.go b/cli/vendor/github.com/go-openapi/runtime/bytestream_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/bytestream_test.go rename to cli/vendor/github.com/go-openapi/runtime/bytestream_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/auth_info.go b/cli/vendor/github.com/go-openapi/runtime/client/auth_info.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/auth_info.go rename to cli/vendor/github.com/go-openapi/runtime/client/auth_info.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/auth_info_test.go b/cli/vendor/github.com/go-openapi/runtime/client/auth_info_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/auth_info_test.go rename to cli/vendor/github.com/go-openapi/runtime/client/auth_info_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/request.go b/cli/vendor/github.com/go-openapi/runtime/client/request.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/request.go rename to cli/vendor/github.com/go-openapi/runtime/client/request.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/request_test.go b/cli/vendor/github.com/go-openapi/runtime/client/request_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/request_test.go rename to cli/vendor/github.com/go-openapi/runtime/client/request_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/response.go b/cli/vendor/github.com/go-openapi/runtime/client/response.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/response.go rename to cli/vendor/github.com/go-openapi/runtime/client/response.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/response_test.go b/cli/vendor/github.com/go-openapi/runtime/client/response_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/response_test.go rename to cli/vendor/github.com/go-openapi/runtime/client/response_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/runtime.go b/cli/vendor/github.com/go-openapi/runtime/client/runtime.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/runtime.go rename to cli/vendor/github.com/go-openapi/runtime/client/runtime.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client/runtime_test.go b/cli/vendor/github.com/go-openapi/runtime/client/runtime_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client/runtime_test.go rename to cli/vendor/github.com/go-openapi/runtime/client/runtime_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client_auth_info.go b/cli/vendor/github.com/go-openapi/runtime/client_auth_info.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client_auth_info.go rename to cli/vendor/github.com/go-openapi/runtime/client_auth_info.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client_operation.go b/cli/vendor/github.com/go-openapi/runtime/client_operation.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client_operation.go rename to cli/vendor/github.com/go-openapi/runtime/client_operation.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client_request.go b/cli/vendor/github.com/go-openapi/runtime/client_request.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client_request.go rename to cli/vendor/github.com/go-openapi/runtime/client_request.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client_request_test.go b/cli/vendor/github.com/go-openapi/runtime/client_request_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client_request_test.go rename to cli/vendor/github.com/go-openapi/runtime/client_request_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client_response.go b/cli/vendor/github.com/go-openapi/runtime/client_response.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client_response.go rename to cli/vendor/github.com/go-openapi/runtime/client_response.go diff --git a/fn/vendor/github.com/go-openapi/runtime/client_response_test.go b/cli/vendor/github.com/go-openapi/runtime/client_response_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/client_response_test.go rename to cli/vendor/github.com/go-openapi/runtime/client_response_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/constants.go b/cli/vendor/github.com/go-openapi/runtime/constants.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/constants.go rename to cli/vendor/github.com/go-openapi/runtime/constants.go diff --git a/fn/vendor/github.com/go-openapi/runtime/discard.go b/cli/vendor/github.com/go-openapi/runtime/discard.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/discard.go rename to cli/vendor/github.com/go-openapi/runtime/discard.go diff --git a/fn/vendor/github.com/go-openapi/runtime/file.go b/cli/vendor/github.com/go-openapi/runtime/file.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/file.go rename to cli/vendor/github.com/go-openapi/runtime/file.go diff --git a/fn/vendor/github.com/go-openapi/runtime/file_test.go b/cli/vendor/github.com/go-openapi/runtime/file_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/file_test.go rename to cli/vendor/github.com/go-openapi/runtime/file_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/bugs/264/swagger.yml b/cli/vendor/github.com/go-openapi/runtime/fixtures/bugs/264/swagger.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/bugs/264/swagger.yml rename to cli/vendor/github.com/go-openapi/runtime/fixtures/bugs/264/swagger.yml diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.crt b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.crt similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.crt rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.crt diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.key b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.key similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.key rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myCA.key diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.crt b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.crt similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.crt rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.crt diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.key b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.key similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.key rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.key diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.req b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.req similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.req rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/mycert1.req diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.crt b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.crt similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.crt rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.crt diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.csr b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.csr similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.csr rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.csr diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.key b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.key similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.key rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.key diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.p12 b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.p12 similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.p12 rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/myclient.p12 diff --git a/fn/vendor/github.com/go-openapi/runtime/fixtures/certs/serial b/cli/vendor/github.com/go-openapi/runtime/fixtures/certs/serial similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/fixtures/certs/serial rename to cli/vendor/github.com/go-openapi/runtime/fixtures/certs/serial diff --git a/fn/vendor/github.com/go-openapi/runtime/flagext/byte_size.go b/cli/vendor/github.com/go-openapi/runtime/flagext/byte_size.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/flagext/byte_size.go rename to cli/vendor/github.com/go-openapi/runtime/flagext/byte_size.go diff --git a/fn/vendor/github.com/go-openapi/runtime/flagext/byte_size_test.go b/cli/vendor/github.com/go-openapi/runtime/flagext/byte_size_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/flagext/byte_size_test.go rename to cli/vendor/github.com/go-openapi/runtime/flagext/byte_size_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/hack/coverage b/cli/vendor/github.com/go-openapi/runtime/hack/coverage similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/hack/coverage rename to cli/vendor/github.com/go-openapi/runtime/hack/coverage diff --git a/fn/vendor/github.com/go-openapi/runtime/hack/gen-self-signed-certs.sh b/cli/vendor/github.com/go-openapi/runtime/hack/gen-self-signed-certs.sh similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/hack/gen-self-signed-certs.sh rename to cli/vendor/github.com/go-openapi/runtime/hack/gen-self-signed-certs.sh diff --git a/fn/vendor/github.com/go-openapi/runtime/headers.go b/cli/vendor/github.com/go-openapi/runtime/headers.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/headers.go rename to cli/vendor/github.com/go-openapi/runtime/headers.go diff --git a/fn/vendor/github.com/go-openapi/runtime/headers_test.go b/cli/vendor/github.com/go-openapi/runtime/headers_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/headers_test.go rename to cli/vendor/github.com/go-openapi/runtime/headers_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/interfaces.go b/cli/vendor/github.com/go-openapi/runtime/interfaces.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/interfaces.go rename to cli/vendor/github.com/go-openapi/runtime/interfaces.go diff --git a/fn/vendor/github.com/go-openapi/runtime/internal/testing/data.go b/cli/vendor/github.com/go-openapi/runtime/internal/testing/data.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/internal/testing/data.go rename to cli/vendor/github.com/go-openapi/runtime/internal/testing/data.go diff --git a/fn/vendor/github.com/go-openapi/runtime/internal/testing/petstore/api.go b/cli/vendor/github.com/go-openapi/runtime/internal/testing/petstore/api.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/internal/testing/petstore/api.go rename to cli/vendor/github.com/go-openapi/runtime/internal/testing/petstore/api.go diff --git a/fn/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api.go b/cli/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api.go rename to cli/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api.go diff --git a/fn/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api_test.go b/cli/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api_test.go rename to cli/vendor/github.com/go-openapi/runtime/internal/testing/simplepetstore/api_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/json.go b/cli/vendor/github.com/go-openapi/runtime/json.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/json.go rename to cli/vendor/github.com/go-openapi/runtime/json.go diff --git a/fn/vendor/github.com/go-openapi/runtime/json_test.go b/cli/vendor/github.com/go-openapi/runtime/json_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/json_test.go rename to cli/vendor/github.com/go-openapi/runtime/json_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/body_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/body_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/body_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/body_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/context.go b/cli/vendor/github.com/go-openapi/runtime/middleware/context.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/context.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/context.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/context_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/context_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/context_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/context_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/LICENSE b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/LICENSE rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/LICENSE diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/README.md b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/README.md rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/README.md diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/router.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/router.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/router.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/router.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/router_bench_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/router_bench_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/router_bench_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/router_bench_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/router_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/router_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/router_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/router_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/server.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/server.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/server.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/server.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/server_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/server_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/server_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/server_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/util.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/util.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/util.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/util.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/denco/util_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/denco/util_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/denco/util_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/denco/util_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/doc.go b/cli/vendor/github.com/go-openapi/runtime/middleware/doc.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/doc.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/doc.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/header/header.go b/cli/vendor/github.com/go-openapi/runtime/middleware/header/header.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/header/header.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/header/header.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/negotiate.go b/cli/vendor/github.com/go-openapi/runtime/middleware/negotiate.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/negotiate.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/negotiate.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/negotiate_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/negotiate_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/negotiate_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/negotiate_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/not_implemented.go b/cli/vendor/github.com/go-openapi/runtime/middleware/not_implemented.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/not_implemented.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/not_implemented.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/operation.go b/cli/vendor/github.com/go-openapi/runtime/middleware/operation.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/operation.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/operation.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/operation_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/operation_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/operation_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/operation_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/parameter.go b/cli/vendor/github.com/go-openapi/runtime/middleware/parameter.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/parameter.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/parameter.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/parameter_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/parameter_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/parameter_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/parameter_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/redoc.go b/cli/vendor/github.com/go-openapi/runtime/middleware/redoc.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/redoc.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/redoc.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/redoc_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/redoc_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/redoc_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/redoc_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/request.go b/cli/vendor/github.com/go-openapi/runtime/middleware/request.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/request.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/request.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/request_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/request_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/request_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/request_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/route_param_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/route_param_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/route_param_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/route_param_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/router.go b/cli/vendor/github.com/go-openapi/runtime/middleware/router.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/router.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/router.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/router_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/router_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/router_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/router_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/security.go b/cli/vendor/github.com/go-openapi/runtime/middleware/security.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/security.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/security.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/security_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/security_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/security_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/security_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/spec.go b/cli/vendor/github.com/go-openapi/runtime/middleware/spec.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/spec.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/spec.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/spec_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/spec_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/spec_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/spec_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/string_conversion_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/string_conversion_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/string_conversion_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/string_conversion_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/untyped/api.go b/cli/vendor/github.com/go-openapi/runtime/middleware/untyped/api.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/untyped/api.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/untyped/api.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/untyped/api_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/untyped/api_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/untyped/api_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/untyped/api_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/untyped_request_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/untyped_request_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/untyped_request_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/untyped_request_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/validation.go b/cli/vendor/github.com/go-openapi/runtime/middleware/validation.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/validation.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/validation.go diff --git a/fn/vendor/github.com/go-openapi/runtime/middleware/validation_test.go b/cli/vendor/github.com/go-openapi/runtime/middleware/validation_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/middleware/validation_test.go rename to cli/vendor/github.com/go-openapi/runtime/middleware/validation_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/request.go b/cli/vendor/github.com/go-openapi/runtime/request.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/request.go rename to cli/vendor/github.com/go-openapi/runtime/request.go diff --git a/fn/vendor/github.com/go-openapi/runtime/request_test.go b/cli/vendor/github.com/go-openapi/runtime/request_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/request_test.go rename to cli/vendor/github.com/go-openapi/runtime/request_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/security/apikey_auth_test.go b/cli/vendor/github.com/go-openapi/runtime/security/apikey_auth_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/security/apikey_auth_test.go rename to cli/vendor/github.com/go-openapi/runtime/security/apikey_auth_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/security/authenticator.go b/cli/vendor/github.com/go-openapi/runtime/security/authenticator.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/security/authenticator.go rename to cli/vendor/github.com/go-openapi/runtime/security/authenticator.go diff --git a/fn/vendor/github.com/go-openapi/runtime/security/basic_auth_test.go b/cli/vendor/github.com/go-openapi/runtime/security/basic_auth_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/security/basic_auth_test.go rename to cli/vendor/github.com/go-openapi/runtime/security/basic_auth_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/security/bearer_auth_test.go b/cli/vendor/github.com/go-openapi/runtime/security/bearer_auth_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/security/bearer_auth_test.go rename to cli/vendor/github.com/go-openapi/runtime/security/bearer_auth_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/statuses.go b/cli/vendor/github.com/go-openapi/runtime/statuses.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/statuses.go rename to cli/vendor/github.com/go-openapi/runtime/statuses.go diff --git a/fn/vendor/github.com/go-openapi/runtime/text.go b/cli/vendor/github.com/go-openapi/runtime/text.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/text.go rename to cli/vendor/github.com/go-openapi/runtime/text.go diff --git a/fn/vendor/github.com/go-openapi/runtime/text_test.go b/cli/vendor/github.com/go-openapi/runtime/text_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/text_test.go rename to cli/vendor/github.com/go-openapi/runtime/text_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/values.go b/cli/vendor/github.com/go-openapi/runtime/values.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/values.go rename to cli/vendor/github.com/go-openapi/runtime/values.go diff --git a/fn/vendor/github.com/go-openapi/runtime/xml.go b/cli/vendor/github.com/go-openapi/runtime/xml.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/xml.go rename to cli/vendor/github.com/go-openapi/runtime/xml.go diff --git a/fn/vendor/github.com/go-openapi/runtime/xml_test.go b/cli/vendor/github.com/go-openapi/runtime/xml_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/xml_test.go rename to cli/vendor/github.com/go-openapi/runtime/xml_test.go diff --git a/fn/vendor/github.com/go-openapi/runtime/yamlpc/yaml.go b/cli/vendor/github.com/go-openapi/runtime/yamlpc/yaml.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/yamlpc/yaml.go rename to cli/vendor/github.com/go-openapi/runtime/yamlpc/yaml.go diff --git a/fn/vendor/github.com/go-openapi/runtime/yamlpc/yaml_test.go b/cli/vendor/github.com/go-openapi/runtime/yamlpc/yaml_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/runtime/yamlpc/yaml_test.go rename to cli/vendor/github.com/go-openapi/runtime/yamlpc/yaml_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/.editorconfig b/cli/vendor/github.com/go-openapi/spec/.editorconfig similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/.editorconfig rename to cli/vendor/github.com/go-openapi/spec/.editorconfig diff --git a/fn/vendor/github.com/go-openapi/spec/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/spec/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/spec/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/spec/.gitignore b/cli/vendor/github.com/go-openapi/spec/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/.gitignore rename to cli/vendor/github.com/go-openapi/spec/.gitignore diff --git a/fn/vendor/github.com/go-openapi/spec/.travis.yml b/cli/vendor/github.com/go-openapi/spec/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/.travis.yml rename to cli/vendor/github.com/go-openapi/spec/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/spec/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/spec/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/spec/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/spec/LICENSE b/cli/vendor/github.com/go-openapi/spec/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/LICENSE rename to cli/vendor/github.com/go-openapi/spec/LICENSE diff --git a/fn/vendor/github.com/go-openapi/spec/README.md b/cli/vendor/github.com/go-openapi/spec/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/README.md rename to cli/vendor/github.com/go-openapi/spec/README.md diff --git a/fn/vendor/github.com/go-openapi/spec/auth_test.go b/cli/vendor/github.com/go-openapi/spec/auth_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/auth_test.go rename to cli/vendor/github.com/go-openapi/spec/auth_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/bindata.go b/cli/vendor/github.com/go-openapi/spec/bindata.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/bindata.go rename to cli/vendor/github.com/go-openapi/spec/bindata.go diff --git a/fn/vendor/github.com/go-openapi/spec/contact_info.go b/cli/vendor/github.com/go-openapi/spec/contact_info.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/contact_info.go rename to cli/vendor/github.com/go-openapi/spec/contact_info.go diff --git a/fn/vendor/github.com/go-openapi/spec/contact_info_test.go b/cli/vendor/github.com/go-openapi/spec/contact_info_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/contact_info_test.go rename to cli/vendor/github.com/go-openapi/spec/contact_info_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/expander.go b/cli/vendor/github.com/go-openapi/spec/expander.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/expander.go rename to cli/vendor/github.com/go-openapi/spec/expander.go diff --git a/fn/vendor/github.com/go-openapi/spec/expander_test.go b/cli/vendor/github.com/go-openapi/spec/expander_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/expander_test.go rename to cli/vendor/github.com/go-openapi/spec/expander_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/external_docs.go b/cli/vendor/github.com/go-openapi/spec/external_docs.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/external_docs.go rename to cli/vendor/github.com/go-openapi/spec/external_docs.go diff --git a/fn/vendor/github.com/go-openapi/spec/external_docs_test.go b/cli/vendor/github.com/go-openapi/spec/external_docs_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/external_docs_test.go rename to cli/vendor/github.com/go-openapi/spec/external_docs_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/all-the-things.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/all-the-things.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/all-the-things.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/all-the-things.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/circularRefs.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/circularRefs.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/circularRefs.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/circularRefs.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.yaml b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.yaml rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/circularSpec.yaml diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.yaml b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.yaml rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/clickmeter.yaml diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/invalid-refs.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/invalid-refs.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/invalid-refs.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/invalid-refs.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/missingRef.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/missingRef.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/missingRef.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/missingRef.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/overflow.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/overflow.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/overflow.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/overflow.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/params.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/params.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/params.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/params.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas1.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas1.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas1.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas1.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas2.json b/cli/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas2.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas2.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/expansion/schemas2.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/local_expansion/item.json b/cli/vendor/github.com/go-openapi/spec/fixtures/local_expansion/item.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/local_expansion/item.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/local_expansion/item.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/local_expansion/spec.json b/cli/vendor/github.com/go-openapi/spec/fixtures/local_expansion/spec.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/local_expansion/spec.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/local_expansion/spec.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/arrayProp.json b/cli/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/arrayProp.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/arrayProp.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/arrayProp.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json b/cli/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/specs/deeper/stringProp.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/specs/refed.json b/cli/vendor/github.com/go-openapi/spec/fixtures/specs/refed.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/specs/refed.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/specs/refed.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/specs/resolution.json b/cli/vendor/github.com/go-openapi/spec/fixtures/specs/resolution.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/specs/resolution.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/specs/resolution.json diff --git a/fn/vendor/github.com/go-openapi/spec/fixtures/specs/resolution2.json b/cli/vendor/github.com/go-openapi/spec/fixtures/specs/resolution2.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/fixtures/specs/resolution2.json rename to cli/vendor/github.com/go-openapi/spec/fixtures/specs/resolution2.json diff --git a/fn/vendor/github.com/go-openapi/spec/header.go b/cli/vendor/github.com/go-openapi/spec/header.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/header.go rename to cli/vendor/github.com/go-openapi/spec/header.go diff --git a/fn/vendor/github.com/go-openapi/spec/header_test.go b/cli/vendor/github.com/go-openapi/spec/header_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/header_test.go rename to cli/vendor/github.com/go-openapi/spec/header_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/info.go b/cli/vendor/github.com/go-openapi/spec/info.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/info.go rename to cli/vendor/github.com/go-openapi/spec/info.go diff --git a/fn/vendor/github.com/go-openapi/spec/info_test.go b/cli/vendor/github.com/go-openapi/spec/info_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/info_test.go rename to cli/vendor/github.com/go-openapi/spec/info_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/items.go b/cli/vendor/github.com/go-openapi/spec/items.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/items.go rename to cli/vendor/github.com/go-openapi/spec/items.go diff --git a/fn/vendor/github.com/go-openapi/spec/items_test.go b/cli/vendor/github.com/go-openapi/spec/items_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/items_test.go rename to cli/vendor/github.com/go-openapi/spec/items_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/license.go b/cli/vendor/github.com/go-openapi/spec/license.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/license.go rename to cli/vendor/github.com/go-openapi/spec/license.go diff --git a/fn/vendor/github.com/go-openapi/spec/license_test.go b/cli/vendor/github.com/go-openapi/spec/license_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/license_test.go rename to cli/vendor/github.com/go-openapi/spec/license_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/operation.go b/cli/vendor/github.com/go-openapi/spec/operation.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/operation.go rename to cli/vendor/github.com/go-openapi/spec/operation.go diff --git a/fn/vendor/github.com/go-openapi/spec/operation_test.go b/cli/vendor/github.com/go-openapi/spec/operation_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/operation_test.go rename to cli/vendor/github.com/go-openapi/spec/operation_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/parameter.go b/cli/vendor/github.com/go-openapi/spec/parameter.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/parameter.go rename to cli/vendor/github.com/go-openapi/spec/parameter.go diff --git a/fn/vendor/github.com/go-openapi/spec/parameters_test.go b/cli/vendor/github.com/go-openapi/spec/parameters_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/parameters_test.go rename to cli/vendor/github.com/go-openapi/spec/parameters_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/path_item.go b/cli/vendor/github.com/go-openapi/spec/path_item.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/path_item.go rename to cli/vendor/github.com/go-openapi/spec/path_item.go diff --git a/fn/vendor/github.com/go-openapi/spec/path_item_test.go b/cli/vendor/github.com/go-openapi/spec/path_item_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/path_item_test.go rename to cli/vendor/github.com/go-openapi/spec/path_item_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/paths.go b/cli/vendor/github.com/go-openapi/spec/paths.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/paths.go rename to cli/vendor/github.com/go-openapi/spec/paths.go diff --git a/fn/vendor/github.com/go-openapi/spec/paths_test.go b/cli/vendor/github.com/go-openapi/spec/paths_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/paths_test.go rename to cli/vendor/github.com/go-openapi/spec/paths_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/properties_test.go b/cli/vendor/github.com/go-openapi/spec/properties_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/properties_test.go rename to cli/vendor/github.com/go-openapi/spec/properties_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/ref.go b/cli/vendor/github.com/go-openapi/spec/ref.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/ref.go rename to cli/vendor/github.com/go-openapi/spec/ref.go diff --git a/fn/vendor/github.com/go-openapi/spec/response.go b/cli/vendor/github.com/go-openapi/spec/response.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/response.go rename to cli/vendor/github.com/go-openapi/spec/response.go diff --git a/fn/vendor/github.com/go-openapi/spec/response_test.go b/cli/vendor/github.com/go-openapi/spec/response_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/response_test.go rename to cli/vendor/github.com/go-openapi/spec/response_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/responses.go b/cli/vendor/github.com/go-openapi/spec/responses.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/responses.go rename to cli/vendor/github.com/go-openapi/spec/responses.go diff --git a/fn/vendor/github.com/go-openapi/spec/schema.go b/cli/vendor/github.com/go-openapi/spec/schema.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/schema.go rename to cli/vendor/github.com/go-openapi/spec/schema.go diff --git a/fn/vendor/github.com/go-openapi/spec/schema_test.go b/cli/vendor/github.com/go-openapi/spec/schema_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/schema_test.go rename to cli/vendor/github.com/go-openapi/spec/schema_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/schemas/jsonschema-draft-04.json b/cli/vendor/github.com/go-openapi/spec/schemas/jsonschema-draft-04.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/schemas/jsonschema-draft-04.json rename to cli/vendor/github.com/go-openapi/spec/schemas/jsonschema-draft-04.json diff --git a/fn/vendor/github.com/go-openapi/spec/schemas/v2/README.md b/cli/vendor/github.com/go-openapi/spec/schemas/v2/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/schemas/v2/README.md rename to cli/vendor/github.com/go-openapi/spec/schemas/v2/README.md diff --git a/fn/vendor/github.com/go-openapi/spec/schemas/v2/schema.json b/cli/vendor/github.com/go-openapi/spec/schemas/v2/schema.json similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/schemas/v2/schema.json rename to cli/vendor/github.com/go-openapi/spec/schemas/v2/schema.json diff --git a/fn/vendor/github.com/go-openapi/spec/security_scheme.go b/cli/vendor/github.com/go-openapi/spec/security_scheme.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/security_scheme.go rename to cli/vendor/github.com/go-openapi/spec/security_scheme.go diff --git a/fn/vendor/github.com/go-openapi/spec/spec.go b/cli/vendor/github.com/go-openapi/spec/spec.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/spec.go rename to cli/vendor/github.com/go-openapi/spec/spec.go diff --git a/fn/vendor/github.com/go-openapi/spec/structs_test.go b/cli/vendor/github.com/go-openapi/spec/structs_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/structs_test.go rename to cli/vendor/github.com/go-openapi/spec/structs_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/swagger.go b/cli/vendor/github.com/go-openapi/spec/swagger.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/swagger.go rename to cli/vendor/github.com/go-openapi/spec/swagger.go diff --git a/fn/vendor/github.com/go-openapi/spec/swagger_test.go b/cli/vendor/github.com/go-openapi/spec/swagger_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/swagger_test.go rename to cli/vendor/github.com/go-openapi/spec/swagger_test.go diff --git a/fn/vendor/github.com/go-openapi/spec/tag.go b/cli/vendor/github.com/go-openapi/spec/tag.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/tag.go rename to cli/vendor/github.com/go-openapi/spec/tag.go diff --git a/fn/vendor/github.com/go-openapi/spec/xml_object.go b/cli/vendor/github.com/go-openapi/spec/xml_object.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/xml_object.go rename to cli/vendor/github.com/go-openapi/spec/xml_object.go diff --git a/fn/vendor/github.com/go-openapi/spec/xml_object_test.go b/cli/vendor/github.com/go-openapi/spec/xml_object_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/spec/xml_object_test.go rename to cli/vendor/github.com/go-openapi/spec/xml_object_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/.editorconfig b/cli/vendor/github.com/go-openapi/strfmt/.editorconfig similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/.editorconfig rename to cli/vendor/github.com/go-openapi/strfmt/.editorconfig diff --git a/fn/vendor/github.com/go-openapi/strfmt/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/strfmt/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/strfmt/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/strfmt/.gitignore b/cli/vendor/github.com/go-openapi/strfmt/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/.gitignore rename to cli/vendor/github.com/go-openapi/strfmt/.gitignore diff --git a/fn/vendor/github.com/go-openapi/strfmt/.travis.yml b/cli/vendor/github.com/go-openapi/strfmt/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/.travis.yml rename to cli/vendor/github.com/go-openapi/strfmt/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/strfmt/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/strfmt/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/strfmt/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/strfmt/LICENSE b/cli/vendor/github.com/go-openapi/strfmt/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/LICENSE rename to cli/vendor/github.com/go-openapi/strfmt/LICENSE diff --git a/fn/vendor/github.com/go-openapi/strfmt/README.md b/cli/vendor/github.com/go-openapi/strfmt/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/README.md rename to cli/vendor/github.com/go-openapi/strfmt/README.md diff --git a/fn/vendor/github.com/go-openapi/strfmt/bson.go b/cli/vendor/github.com/go-openapi/strfmt/bson.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/bson.go rename to cli/vendor/github.com/go-openapi/strfmt/bson.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/bson_test.go b/cli/vendor/github.com/go-openapi/strfmt/bson_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/bson_test.go rename to cli/vendor/github.com/go-openapi/strfmt/bson_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/date.go b/cli/vendor/github.com/go-openapi/strfmt/conv/date.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/date.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/date.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/date_test.go b/cli/vendor/github.com/go-openapi/strfmt/conv/date_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/date_test.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/date_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/default.go b/cli/vendor/github.com/go-openapi/strfmt/conv/default.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/default.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/default.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/default_test.go b/cli/vendor/github.com/go-openapi/strfmt/conv/default_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/default_test.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/default_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/duration.go b/cli/vendor/github.com/go-openapi/strfmt/conv/duration.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/duration.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/duration.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/duration_test.go b/cli/vendor/github.com/go-openapi/strfmt/conv/duration_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/duration_test.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/duration_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/time.go b/cli/vendor/github.com/go-openapi/strfmt/conv/time.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/time.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/time.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/conv/time_test.go b/cli/vendor/github.com/go-openapi/strfmt/conv/time_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/conv/time_test.go rename to cli/vendor/github.com/go-openapi/strfmt/conv/time_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/date.go b/cli/vendor/github.com/go-openapi/strfmt/date.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/date.go rename to cli/vendor/github.com/go-openapi/strfmt/date.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/date_test.go b/cli/vendor/github.com/go-openapi/strfmt/date_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/date_test.go rename to cli/vendor/github.com/go-openapi/strfmt/date_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/default.go b/cli/vendor/github.com/go-openapi/strfmt/default.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/default.go rename to cli/vendor/github.com/go-openapi/strfmt/default.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/default_test.go b/cli/vendor/github.com/go-openapi/strfmt/default_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/default_test.go rename to cli/vendor/github.com/go-openapi/strfmt/default_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/doc.go b/cli/vendor/github.com/go-openapi/strfmt/doc.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/doc.go rename to cli/vendor/github.com/go-openapi/strfmt/doc.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/duration.go b/cli/vendor/github.com/go-openapi/strfmt/duration.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/duration.go rename to cli/vendor/github.com/go-openapi/strfmt/duration.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/duration_test.go b/cli/vendor/github.com/go-openapi/strfmt/duration_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/duration_test.go rename to cli/vendor/github.com/go-openapi/strfmt/duration_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/format.go b/cli/vendor/github.com/go-openapi/strfmt/format.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/format.go rename to cli/vendor/github.com/go-openapi/strfmt/format.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/format_test.go b/cli/vendor/github.com/go-openapi/strfmt/format_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/format_test.go rename to cli/vendor/github.com/go-openapi/strfmt/format_test.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/hack/coverage b/cli/vendor/github.com/go-openapi/strfmt/hack/coverage similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/hack/coverage rename to cli/vendor/github.com/go-openapi/strfmt/hack/coverage diff --git a/fn/vendor/github.com/go-openapi/strfmt/time.go b/cli/vendor/github.com/go-openapi/strfmt/time.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/time.go rename to cli/vendor/github.com/go-openapi/strfmt/time.go diff --git a/fn/vendor/github.com/go-openapi/strfmt/time_test.go b/cli/vendor/github.com/go-openapi/strfmt/time_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/strfmt/time_test.go rename to cli/vendor/github.com/go-openapi/strfmt/time_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/.editorconfig b/cli/vendor/github.com/go-openapi/swag/.editorconfig similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/.editorconfig rename to cli/vendor/github.com/go-openapi/swag/.editorconfig diff --git a/fn/vendor/github.com/go-openapi/swag/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/swag/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/swag/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/swag/.gitignore b/cli/vendor/github.com/go-openapi/swag/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/.gitignore rename to cli/vendor/github.com/go-openapi/swag/.gitignore diff --git a/fn/vendor/github.com/go-openapi/swag/.travis.yml b/cli/vendor/github.com/go-openapi/swag/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/.travis.yml rename to cli/vendor/github.com/go-openapi/swag/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/swag/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/swag/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/swag/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/swag/LICENSE b/cli/vendor/github.com/go-openapi/swag/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/LICENSE rename to cli/vendor/github.com/go-openapi/swag/LICENSE diff --git a/fn/vendor/github.com/go-openapi/swag/README.md b/cli/vendor/github.com/go-openapi/swag/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/README.md rename to cli/vendor/github.com/go-openapi/swag/README.md diff --git a/fn/vendor/github.com/go-openapi/swag/convert.go b/cli/vendor/github.com/go-openapi/swag/convert.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/convert.go rename to cli/vendor/github.com/go-openapi/swag/convert.go diff --git a/fn/vendor/github.com/go-openapi/swag/convert_test.go b/cli/vendor/github.com/go-openapi/swag/convert_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/convert_test.go rename to cli/vendor/github.com/go-openapi/swag/convert_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/convert_types.go b/cli/vendor/github.com/go-openapi/swag/convert_types.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/convert_types.go rename to cli/vendor/github.com/go-openapi/swag/convert_types.go diff --git a/fn/vendor/github.com/go-openapi/swag/convert_types_test.go b/cli/vendor/github.com/go-openapi/swag/convert_types_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/convert_types_test.go rename to cli/vendor/github.com/go-openapi/swag/convert_types_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/json.go b/cli/vendor/github.com/go-openapi/swag/json.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/json.go rename to cli/vendor/github.com/go-openapi/swag/json.go diff --git a/fn/vendor/github.com/go-openapi/swag/json_test.go b/cli/vendor/github.com/go-openapi/swag/json_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/json_test.go rename to cli/vendor/github.com/go-openapi/swag/json_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/loading.go b/cli/vendor/github.com/go-openapi/swag/loading.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/loading.go rename to cli/vendor/github.com/go-openapi/swag/loading.go diff --git a/fn/vendor/github.com/go-openapi/swag/loading_test.go b/cli/vendor/github.com/go-openapi/swag/loading_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/loading_test.go rename to cli/vendor/github.com/go-openapi/swag/loading_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/net.go b/cli/vendor/github.com/go-openapi/swag/net.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/net.go rename to cli/vendor/github.com/go-openapi/swag/net.go diff --git a/fn/vendor/github.com/go-openapi/swag/net_test.go b/cli/vendor/github.com/go-openapi/swag/net_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/net_test.go rename to cli/vendor/github.com/go-openapi/swag/net_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/path.go b/cli/vendor/github.com/go-openapi/swag/path.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/path.go rename to cli/vendor/github.com/go-openapi/swag/path.go diff --git a/fn/vendor/github.com/go-openapi/swag/path_test.go b/cli/vendor/github.com/go-openapi/swag/path_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/path_test.go rename to cli/vendor/github.com/go-openapi/swag/path_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/util.go b/cli/vendor/github.com/go-openapi/swag/util.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/util.go rename to cli/vendor/github.com/go-openapi/swag/util.go diff --git a/fn/vendor/github.com/go-openapi/swag/util_test.go b/cli/vendor/github.com/go-openapi/swag/util_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/util_test.go rename to cli/vendor/github.com/go-openapi/swag/util_test.go diff --git a/fn/vendor/github.com/go-openapi/swag/yaml.go b/cli/vendor/github.com/go-openapi/swag/yaml.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/yaml.go rename to cli/vendor/github.com/go-openapi/swag/yaml.go diff --git a/fn/vendor/github.com/go-openapi/swag/yaml_test.go b/cli/vendor/github.com/go-openapi/swag/yaml_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/swag/yaml_test.go rename to cli/vendor/github.com/go-openapi/swag/yaml_test.go diff --git a/fn/vendor/github.com/go-openapi/validate/.github/CONTRIBUTING.md b/cli/vendor/github.com/go-openapi/validate/.github/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/.github/CONTRIBUTING.md rename to cli/vendor/github.com/go-openapi/validate/.github/CONTRIBUTING.md diff --git a/fn/vendor/github.com/go-openapi/validate/.gitignore b/cli/vendor/github.com/go-openapi/validate/.gitignore similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/.gitignore rename to cli/vendor/github.com/go-openapi/validate/.gitignore diff --git a/fn/vendor/github.com/go-openapi/validate/.travis.yml b/cli/vendor/github.com/go-openapi/validate/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/.travis.yml rename to cli/vendor/github.com/go-openapi/validate/.travis.yml diff --git a/fn/vendor/github.com/go-openapi/validate/CODE_OF_CONDUCT.md b/cli/vendor/github.com/go-openapi/validate/CODE_OF_CONDUCT.md similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/CODE_OF_CONDUCT.md rename to cli/vendor/github.com/go-openapi/validate/CODE_OF_CONDUCT.md diff --git a/fn/vendor/github.com/go-openapi/validate/LICENSE b/cli/vendor/github.com/go-openapi/validate/LICENSE similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/LICENSE rename to cli/vendor/github.com/go-openapi/validate/LICENSE diff --git a/fn/vendor/github.com/go-openapi/validate/README.md b/cli/vendor/github.com/go-openapi/validate/README.md similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/README.md rename to cli/vendor/github.com/go-openapi/validate/README.md diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/123/swagger.yml b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/123/swagger.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/123/swagger.yml rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/123/swagger.yml diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headerItems.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headerItems.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headerItems.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headerItems.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headers.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headers.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headers.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/headers.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/paramItems.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/paramItems.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/paramItems.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/paramItems.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/parameters.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/parameters.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/parameters.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/parameters.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/schema.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/schema.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/18/schema.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/18/schema.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/52/swagger.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/52/swagger.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/52/swagger.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/52/swagger.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/53/noswagger.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/53/noswagger.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/53/noswagger.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/53/noswagger.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/6/empty-responses.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/6/empty-responses.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/6/empty-responses.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/6/empty-responses.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/6/no-responses.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/6/no-responses.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/6/no-responses.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/6/no-responses.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/61/multiple-refs.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/61/multiple-refs.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/61/multiple-refs.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/61/multiple-refs.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/61/unresolved-ref-for-name.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/61/unresolved-ref-for-name.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/61/unresolved-ref-for-name.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/61/unresolved-ref-for-name.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/62/swagger.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/62/swagger.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/62/swagger.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/62/swagger.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/bugs/63/swagger.json b/cli/vendor/github.com/go-openapi/validate/fixtures/bugs/63/swagger.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/bugs/63/swagger.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/bugs/63/swagger.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalItems.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalItems.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalItems.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalItems.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/additionalProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/allOf.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/allOf.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/allOf.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/allOf.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/anyOf.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/anyOf.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/anyOf.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/anyOf.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/default.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/default.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/default.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/default.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/definitions.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/definitions.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/definitions.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/definitions.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/dependencies.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/dependencies.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/dependencies.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/dependencies.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/enum.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/enum.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/enum.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/enum.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/format.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/format.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/format.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/format.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxItems.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxItems.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxItems.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxItems.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxLength.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxLength.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxLength.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxLength.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maxProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maximum.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maximum.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maximum.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/maximum.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minItems.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minItems.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minItems.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minItems.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minLength.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minLength.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minLength.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minLength.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minimum.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minimum.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minimum.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/minimum.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/multipleOf.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/multipleOf.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/multipleOf.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/multipleOf.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/not.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/not.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/not.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/not.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/oneOf.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/oneOf.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/oneOf.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/oneOf.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/bignum.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/bignum.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/bignum.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/bignum.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/ecmascript-regex.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/ecmascript-regex.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/ecmascript-regex.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/ecmascript-regex.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/format.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/format.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/format.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/format.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/zeroTerminatedFloats.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/zeroTerminatedFloats.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/zeroTerminatedFloats.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/optional/zeroTerminatedFloats.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/pattern.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/pattern.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/pattern.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/pattern.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/patternProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/patternProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/patternProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/patternProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/properties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/properties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/properties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/properties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/refRemote.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/refRemote.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/refRemote.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/refRemote.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/folder/folderInteger.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/folder/folderInteger.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/folder/folderInteger.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/folder/folderInteger.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/integer.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/integer.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/integer.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/integer.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/subSchemas.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/subSchemas.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/subSchemas.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/remotes/subSchemas.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/required.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/required.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/required.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/required.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/type.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/type.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/type.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/type.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/uniqueItems.json b/cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/uniqueItems.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/uniqueItems.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/jsonschema_suite/uniqueItems.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/local_expansion/item.yaml b/cli/vendor/github.com/go-openapi/validate/fixtures/local_expansion/item.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/local_expansion/item.yaml rename to cli/vendor/github.com/go-openapi/validate/fixtures/local_expansion/item.yaml diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/local_expansion/spec.yaml b/cli/vendor/github.com/go-openapi/validate/fixtures/local_expansion/spec.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/local_expansion/spec.yaml rename to cli/vendor/github.com/go-openapi/validate/fixtures/local_expansion/spec.yaml diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/item.yaml b/cli/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/item.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/item.yaml rename to cli/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/item.yaml diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/spec.yaml b/cli/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/spec.yaml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/spec.yaml rename to cli/vendor/github.com/go-openapi/validate/fixtures/recursive_expansion/spec.yaml diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/schemas/int-enum.json b/cli/vendor/github.com/go-openapi/validate/fixtures/schemas/int-enum.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/schemas/int-enum.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/schemas/int-enum.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/direct-circular-ancestor.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/direct-circular-ancestor.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/direct-circular-ancestor.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/direct-circular-ancestor.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/duplicateprops.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/duplicateprops.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/duplicateprops.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/duplicateprops.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/empty-path-param-name.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/empty-path-param-name.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/empty-path-param-name.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/empty-path-param-name.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/indirect-circular-ancestor.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/indirect-circular-ancestor.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/indirect-circular-ancestor.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/indirect-circular-ancestor.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header-items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header-items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header-items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header-items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-header.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-parameter.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-additionalProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-additionalProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-additionalProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-additionalProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-allOf.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-allOf.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-allOf.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-allOf.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-patternProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-patternProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-patternProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-patternProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-default-value-schema.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-example-response.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-formdata-body-params.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-formdata-body-params.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-formdata-body-params.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-formdata-body-params.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-referenced.yml b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-referenced.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-referenced.yml rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/invalid-referenced.yml diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/nestedduplicateprops.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/nestedduplicateprops.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/nestedduplicateprops.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/nestedduplicateprops.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/recursive-circular-ancestor.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/recursive-circular-ancestor.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/recursive-circular-ancestor.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/recursive-circular-ancestor.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header-items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header-items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header-items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header-items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-header.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-parameter.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-additionalProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-additionalProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-additionalProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-additionalProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-allOf.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-allOf.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-allOf.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-allOf.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-items.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-items.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-items.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-items.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-patternProperties.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-patternProperties.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-patternProperties.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-patternProperties.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-default-value-schema.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-example-response.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-ref.json b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-ref.json similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-ref.json rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-ref.json diff --git a/fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-referenced.yml b/cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-referenced.yml similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/fixtures/validation/valid-referenced.yml rename to cli/vendor/github.com/go-openapi/validate/fixtures/validation/valid-referenced.yml diff --git a/fn/vendor/github.com/go-openapi/validate/formats.go b/cli/vendor/github.com/go-openapi/validate/formats.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/formats.go rename to cli/vendor/github.com/go-openapi/validate/formats.go diff --git a/fn/vendor/github.com/go-openapi/validate/items_validator_test.go b/cli/vendor/github.com/go-openapi/validate/items_validator_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/items_validator_test.go rename to cli/vendor/github.com/go-openapi/validate/items_validator_test.go diff --git a/fn/vendor/github.com/go-openapi/validate/object_validator.go b/cli/vendor/github.com/go-openapi/validate/object_validator.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/object_validator.go rename to cli/vendor/github.com/go-openapi/validate/object_validator.go diff --git a/fn/vendor/github.com/go-openapi/validate/parameter_validator_test.go b/cli/vendor/github.com/go-openapi/validate/parameter_validator_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/parameter_validator_test.go rename to cli/vendor/github.com/go-openapi/validate/parameter_validator_test.go diff --git a/fn/vendor/github.com/go-openapi/validate/result.go b/cli/vendor/github.com/go-openapi/validate/result.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/result.go rename to cli/vendor/github.com/go-openapi/validate/result.go diff --git a/fn/vendor/github.com/go-openapi/validate/schema.go b/cli/vendor/github.com/go-openapi/validate/schema.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/schema.go rename to cli/vendor/github.com/go-openapi/validate/schema.go diff --git a/fn/vendor/github.com/go-openapi/validate/schema_props.go b/cli/vendor/github.com/go-openapi/validate/schema_props.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/schema_props.go rename to cli/vendor/github.com/go-openapi/validate/schema_props.go diff --git a/fn/vendor/github.com/go-openapi/validate/slice_validator.go b/cli/vendor/github.com/go-openapi/validate/slice_validator.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/slice_validator.go rename to cli/vendor/github.com/go-openapi/validate/slice_validator.go diff --git a/fn/vendor/github.com/go-openapi/validate/spec.go b/cli/vendor/github.com/go-openapi/validate/spec.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/spec.go rename to cli/vendor/github.com/go-openapi/validate/spec.go diff --git a/fn/vendor/github.com/go-openapi/validate/spec_test.go b/cli/vendor/github.com/go-openapi/validate/spec_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/spec_test.go rename to cli/vendor/github.com/go-openapi/validate/spec_test.go diff --git a/fn/vendor/github.com/go-openapi/validate/type.go b/cli/vendor/github.com/go-openapi/validate/type.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/type.go rename to cli/vendor/github.com/go-openapi/validate/type.go diff --git a/fn/vendor/github.com/go-openapi/validate/type_test.go b/cli/vendor/github.com/go-openapi/validate/type_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/type_test.go rename to cli/vendor/github.com/go-openapi/validate/type_test.go diff --git a/fn/vendor/github.com/go-openapi/validate/update-fixtures.sh b/cli/vendor/github.com/go-openapi/validate/update-fixtures.sh similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/update-fixtures.sh rename to cli/vendor/github.com/go-openapi/validate/update-fixtures.sh diff --git a/fn/vendor/github.com/go-openapi/validate/validator.go b/cli/vendor/github.com/go-openapi/validate/validator.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/validator.go rename to cli/vendor/github.com/go-openapi/validate/validator.go diff --git a/fn/vendor/github.com/go-openapi/validate/values.go b/cli/vendor/github.com/go-openapi/validate/values.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/values.go rename to cli/vendor/github.com/go-openapi/validate/values.go diff --git a/fn/vendor/github.com/go-openapi/validate/values_test.go b/cli/vendor/github.com/go-openapi/validate/values_test.go similarity index 100% rename from fn/vendor/github.com/go-openapi/validate/values_test.go rename to cli/vendor/github.com/go-openapi/validate/values_test.go diff --git a/fn/vendor/github.com/go-resty/resty/.gitignore b/cli/vendor/github.com/go-resty/resty/.gitignore similarity index 100% rename from fn/vendor/github.com/go-resty/resty/.gitignore rename to cli/vendor/github.com/go-resty/resty/.gitignore diff --git a/fn/vendor/github.com/go-resty/resty/.travis.yml b/cli/vendor/github.com/go-resty/resty/.travis.yml similarity index 100% rename from fn/vendor/github.com/go-resty/resty/.travis.yml rename to cli/vendor/github.com/go-resty/resty/.travis.yml diff --git a/fn/vendor/github.com/go-resty/resty/LICENSE b/cli/vendor/github.com/go-resty/resty/LICENSE similarity index 100% rename from fn/vendor/github.com/go-resty/resty/LICENSE rename to cli/vendor/github.com/go-resty/resty/LICENSE diff --git a/fn/vendor/github.com/go-resty/resty/README.md b/cli/vendor/github.com/go-resty/resty/README.md similarity index 100% rename from fn/vendor/github.com/go-resty/resty/README.md rename to cli/vendor/github.com/go-resty/resty/README.md diff --git a/fn/vendor/github.com/go-resty/resty/client.go b/cli/vendor/github.com/go-resty/resty/client.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/client.go rename to cli/vendor/github.com/go-resty/resty/client.go diff --git a/fn/vendor/github.com/go-resty/resty/client_test.go b/cli/vendor/github.com/go-resty/resty/client_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/client_test.go rename to cli/vendor/github.com/go-resty/resty/client_test.go diff --git a/fn/vendor/github.com/go-resty/resty/context17_test.go b/cli/vendor/github.com/go-resty/resty/context17_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/context17_test.go rename to cli/vendor/github.com/go-resty/resty/context17_test.go diff --git a/fn/vendor/github.com/go-resty/resty/context18_test.go b/cli/vendor/github.com/go-resty/resty/context18_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/context18_test.go rename to cli/vendor/github.com/go-resty/resty/context18_test.go diff --git a/fn/vendor/github.com/go-resty/resty/context_test.go b/cli/vendor/github.com/go-resty/resty/context_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/context_test.go rename to cli/vendor/github.com/go-resty/resty/context_test.go diff --git a/fn/vendor/github.com/go-resty/resty/default.go b/cli/vendor/github.com/go-resty/resty/default.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/default.go rename to cli/vendor/github.com/go-resty/resty/default.go diff --git a/fn/vendor/github.com/go-resty/resty/example_test.go b/cli/vendor/github.com/go-resty/resty/example_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/example_test.go rename to cli/vendor/github.com/go-resty/resty/example_test.go diff --git a/fn/vendor/github.com/go-resty/resty/middleware.go b/cli/vendor/github.com/go-resty/resty/middleware.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/middleware.go rename to cli/vendor/github.com/go-resty/resty/middleware.go diff --git a/fn/vendor/github.com/go-resty/resty/redirect.go b/cli/vendor/github.com/go-resty/resty/redirect.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/redirect.go rename to cli/vendor/github.com/go-resty/resty/redirect.go diff --git a/fn/vendor/github.com/go-resty/resty/request.go b/cli/vendor/github.com/go-resty/resty/request.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/request.go rename to cli/vendor/github.com/go-resty/resty/request.go diff --git a/fn/vendor/github.com/go-resty/resty/request16.go b/cli/vendor/github.com/go-resty/resty/request16.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/request16.go rename to cli/vendor/github.com/go-resty/resty/request16.go diff --git a/fn/vendor/github.com/go-resty/resty/request17.go b/cli/vendor/github.com/go-resty/resty/request17.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/request17.go rename to cli/vendor/github.com/go-resty/resty/request17.go diff --git a/fn/vendor/github.com/go-resty/resty/response.go b/cli/vendor/github.com/go-resty/resty/response.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/response.go rename to cli/vendor/github.com/go-resty/resty/response.go diff --git a/fn/vendor/github.com/go-resty/resty/resty.go b/cli/vendor/github.com/go-resty/resty/resty.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/resty.go rename to cli/vendor/github.com/go-resty/resty/resty.go diff --git a/fn/vendor/github.com/go-resty/resty/resty_test.go b/cli/vendor/github.com/go-resty/resty/resty_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/resty_test.go rename to cli/vendor/github.com/go-resty/resty/resty_test.go diff --git a/fn/vendor/github.com/go-resty/resty/retry.go b/cli/vendor/github.com/go-resty/resty/retry.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/retry.go rename to cli/vendor/github.com/go-resty/resty/retry.go diff --git a/fn/vendor/github.com/go-resty/resty/retry_test.go b/cli/vendor/github.com/go-resty/resty/retry_test.go similarity index 100% rename from fn/vendor/github.com/go-resty/resty/retry_test.go rename to cli/vendor/github.com/go-resty/resty/retry_test.go diff --git a/fn/vendor/github.com/go-resty/resty/test-data/test-img.png b/cli/vendor/github.com/go-resty/resty/test-data/test-img.png similarity index 100% rename from fn/vendor/github.com/go-resty/resty/test-data/test-img.png rename to cli/vendor/github.com/go-resty/resty/test-data/test-img.png diff --git a/fn/vendor/github.com/go-resty/resty/test-data/text-file.txt b/cli/vendor/github.com/go-resty/resty/test-data/text-file.txt similarity index 100% rename from fn/vendor/github.com/go-resty/resty/test-data/text-file.txt rename to cli/vendor/github.com/go-resty/resty/test-data/text-file.txt diff --git a/fn/vendor/github.com/jmespath/go-jmespath/.gitignore b/cli/vendor/github.com/jmespath/go-jmespath/.gitignore similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/.gitignore rename to cli/vendor/github.com/jmespath/go-jmespath/.gitignore diff --git a/fn/vendor/github.com/jmespath/go-jmespath/.travis.yml b/cli/vendor/github.com/jmespath/go-jmespath/.travis.yml similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/.travis.yml rename to cli/vendor/github.com/jmespath/go-jmespath/.travis.yml diff --git a/fn/vendor/github.com/jmespath/go-jmespath/LICENSE b/cli/vendor/github.com/jmespath/go-jmespath/LICENSE similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/LICENSE rename to cli/vendor/github.com/jmespath/go-jmespath/LICENSE diff --git a/fn/vendor/github.com/jmespath/go-jmespath/Makefile b/cli/vendor/github.com/jmespath/go-jmespath/Makefile similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/Makefile rename to cli/vendor/github.com/jmespath/go-jmespath/Makefile diff --git a/fn/vendor/github.com/jmespath/go-jmespath/README.md b/cli/vendor/github.com/jmespath/go-jmespath/README.md similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/README.md rename to cli/vendor/github.com/jmespath/go-jmespath/README.md diff --git a/fn/vendor/github.com/jmespath/go-jmespath/api.go b/cli/vendor/github.com/jmespath/go-jmespath/api.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/api.go rename to cli/vendor/github.com/jmespath/go-jmespath/api.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/api_test.go b/cli/vendor/github.com/jmespath/go-jmespath/api_test.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/api_test.go rename to cli/vendor/github.com/jmespath/go-jmespath/api_test.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/astnodetype_string.go b/cli/vendor/github.com/jmespath/go-jmespath/astnodetype_string.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/astnodetype_string.go rename to cli/vendor/github.com/jmespath/go-jmespath/astnodetype_string.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/cmd/jpgo/main.go b/cli/vendor/github.com/jmespath/go-jmespath/cmd/jpgo/main.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/cmd/jpgo/main.go rename to cli/vendor/github.com/jmespath/go-jmespath/cmd/jpgo/main.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/basic.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/basic.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/basic.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/basic.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/boolean.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/boolean.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/boolean.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/boolean.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/current.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/current.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/current.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/current.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/escape.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/escape.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/escape.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/escape.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/filters.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/filters.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/filters.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/filters.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/functions.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/functions.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/functions.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/functions.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/identifiers.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/identifiers.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/identifiers.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/identifiers.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/indices.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/indices.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/indices.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/indices.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/literal.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/literal.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/literal.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/literal.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/multiselect.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/multiselect.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/multiselect.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/multiselect.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/ormatch.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/ormatch.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/ormatch.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/ormatch.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/pipe.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/pipe.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/pipe.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/pipe.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/slice.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/slice.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/slice.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/slice.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/syntax.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/syntax.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/syntax.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/syntax.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/unicode.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/unicode.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/unicode.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/unicode.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance/wildcard.json b/cli/vendor/github.com/jmespath/go-jmespath/compliance/wildcard.json similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance/wildcard.json rename to cli/vendor/github.com/jmespath/go-jmespath/compliance/wildcard.json diff --git a/fn/vendor/github.com/jmespath/go-jmespath/compliance_test.go b/cli/vendor/github.com/jmespath/go-jmespath/compliance_test.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/compliance_test.go rename to cli/vendor/github.com/jmespath/go-jmespath/compliance_test.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/functions.go b/cli/vendor/github.com/jmespath/go-jmespath/functions.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/functions.go rename to cli/vendor/github.com/jmespath/go-jmespath/functions.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/jmespath.go b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/jmespath.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/jmespath.go rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/jmespath.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-1 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-1 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-1 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-1 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-10 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-10 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-10 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-10 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-100 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-100 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-100 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-100 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-101 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-101 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-101 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-101 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-102 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-102 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-102 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-102 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-103 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-103 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-103 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-103 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-104 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-104 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-104 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-104 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-105 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-105 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-105 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-105 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-106 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-106 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-106 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-106 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-107 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-107 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-107 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-107 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-108 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-108 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-108 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-108 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-109 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-109 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-109 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-109 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-110 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-110 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-110 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-110 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-112 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-112 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-112 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-112 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-115 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-115 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-115 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-115 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-118 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-118 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-118 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-118 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-119 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-119 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-119 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-119 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-12 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-12 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-12 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-12 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-120 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-120 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-120 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-120 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-121 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-121 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-121 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-121 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-122 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-122 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-122 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-122 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-123 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-123 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-123 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-123 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-126 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-126 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-126 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-126 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-128 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-128 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-128 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-128 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-129 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-129 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-129 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-129 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-13 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-13 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-13 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-13 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-130 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-130 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-130 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-130 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-131 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-131 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-131 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-131 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-132 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-132 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-132 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-132 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-133 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-133 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-133 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-133 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-134 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-134 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-134 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-134 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-135 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-135 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-135 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-135 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-136 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-136 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-136 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-136 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-137 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-137 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-137 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-137 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-138 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-138 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-138 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-138 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-139 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-139 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-139 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-139 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-14 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-14 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-14 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-14 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-140 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-140 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-140 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-140 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-141 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-141 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-141 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-141 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-142 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-142 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-142 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-142 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-143 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-143 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-143 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-143 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-144 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-144 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-144 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-144 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-145 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-145 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-145 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-145 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-146 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-146 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-146 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-146 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-147 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-147 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-147 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-147 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-148 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-148 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-148 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-148 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-149 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-149 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-149 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-149 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-15 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-15 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-15 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-15 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-150 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-150 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-150 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-150 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-151 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-151 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-151 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-151 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-152 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-152 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-152 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-152 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-153 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-153 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-153 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-153 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-155 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-155 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-155 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-155 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-156 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-156 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-156 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-156 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-157 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-157 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-157 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-157 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-158 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-158 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-158 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-158 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-159 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-159 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-159 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-159 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-16 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-16 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-16 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-16 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-160 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-160 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-160 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-160 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-161 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-161 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-161 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-161 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-162 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-162 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-162 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-162 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-163 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-163 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-163 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-163 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-164 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-164 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-164 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-164 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-165 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-165 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-165 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-165 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-166 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-166 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-166 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-166 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-167 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-167 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-167 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-167 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-168 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-168 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-168 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-168 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-169 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-169 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-169 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-169 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-17 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-17 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-17 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-17 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-170 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-170 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-170 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-170 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-171 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-171 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-171 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-171 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-172 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-172 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-172 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-172 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-173 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-173 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-173 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-173 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-174 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-174 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-174 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-174 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-175 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-175 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-175 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-175 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-178 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-178 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-178 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-178 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-179 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-179 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-179 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-179 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-18 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-18 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-18 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-18 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-180 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-180 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-180 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-180 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-181 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-181 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-181 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-181 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-182 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-182 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-182 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-182 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-183 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-183 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-183 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-183 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-184 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-184 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-184 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-184 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-185 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-185 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-185 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-185 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-186 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-186 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-186 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-186 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-187 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-187 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-187 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-187 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-188 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-188 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-188 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-188 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-189 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-189 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-189 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-189 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-19 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-19 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-19 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-19 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-190 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-190 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-190 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-190 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-191 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-191 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-191 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-191 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-192 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-192 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-192 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-192 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-193 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-193 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-193 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-193 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-194 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-194 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-194 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-194 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-195 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-195 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-195 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-195 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-196 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-196 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-196 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-196 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-198 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-198 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-198 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-198 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-199 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-199 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-199 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-199 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-2 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-2 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-2 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-2 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-20 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-20 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-20 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-20 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-200 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-200 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-200 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-200 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-201 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-201 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-201 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-201 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-202 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-202 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-202 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-202 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-203 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-203 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-203 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-203 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-204 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-204 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-204 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-204 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-205 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-205 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-205 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-205 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-206 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-206 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-206 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-206 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-207 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-207 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-207 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-207 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-208 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-208 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-208 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-208 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-209 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-209 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-209 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-209 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-21 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-21 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-21 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-21 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-210 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-210 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-210 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-210 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-211 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-211 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-211 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-211 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-212 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-212 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-212 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-212 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-213 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-213 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-213 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-213 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-214 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-214 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-214 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-214 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-215 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-215 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-215 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-215 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-216 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-216 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-216 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-216 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-217 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-217 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-217 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-217 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-218 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-218 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-218 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-218 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-219 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-219 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-219 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-219 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-22 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-22 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-22 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-22 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-220 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-220 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-220 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-220 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-221 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-221 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-221 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-221 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-222 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-222 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-222 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-222 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-223 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-223 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-223 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-223 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-224 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-224 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-224 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-224 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-225 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-225 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-225 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-225 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-226 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-226 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-226 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-226 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-227 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-227 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-227 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-227 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-228 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-228 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-228 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-228 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-229 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-229 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-229 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-229 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-23 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-23 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-23 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-23 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-230 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-230 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-230 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-230 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-231 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-231 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-231 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-231 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-232 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-232 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-232 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-232 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-233 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-233 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-233 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-233 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-234 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-234 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-234 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-234 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-235 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-235 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-235 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-235 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-236 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-236 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-236 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-236 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-237 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-237 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-237 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-237 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-238 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-238 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-238 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-238 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-239 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-239 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-239 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-239 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-24 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-24 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-24 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-24 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-240 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-240 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-240 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-240 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-241 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-241 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-241 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-241 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-242 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-242 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-242 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-242 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-243 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-243 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-243 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-243 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-244 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-244 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-244 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-244 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-245 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-245 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-245 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-245 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-246 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-246 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-246 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-246 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-247 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-247 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-247 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-247 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-248 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-248 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-248 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-248 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-249 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-249 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-249 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-249 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-25 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-25 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-25 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-25 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-250 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-250 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-250 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-250 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-251 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-251 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-251 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-251 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-252 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-252 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-252 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-252 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-253 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-253 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-253 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-253 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-254 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-254 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-254 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-254 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-255 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-255 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-255 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-255 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-256 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-256 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-256 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-256 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-257 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-257 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-257 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-257 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-258 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-258 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-258 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-258 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-259 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-259 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-259 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-259 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-26 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-26 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-26 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-26 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-260 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-260 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-260 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-260 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-261 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-261 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-261 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-261 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-262 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-262 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-262 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-262 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-263 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-263 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-263 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-263 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-264 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-264 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-264 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-264 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-265 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-265 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-265 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-265 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-266 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-266 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-266 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-266 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-267 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-267 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-267 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-267 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-268 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-268 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-268 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-268 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-269 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-269 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-269 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-269 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-27 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-27 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-27 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-27 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-270 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-270 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-270 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-270 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-271 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-271 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-271 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-271 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-272 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-272 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-272 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-272 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-273 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-273 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-273 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-273 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-274 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-274 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-274 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-274 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-275 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-275 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-275 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-275 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-276 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-276 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-276 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-276 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-277 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-277 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-277 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-277 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-278 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-278 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-278 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-278 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-279 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-279 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-279 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-279 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-28 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-28 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-28 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-28 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-280 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-280 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-280 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-280 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-281 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-281 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-281 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-281 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-282 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-282 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-282 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-282 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-283 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-283 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-283 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-283 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-284 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-284 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-284 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-284 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-285 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-285 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-285 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-285 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-286 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-286 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-286 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-286 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-287 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-287 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-287 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-287 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-288 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-288 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-288 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-288 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-289 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-289 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-289 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-289 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-29 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-29 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-29 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-29 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-290 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-290 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-290 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-290 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-291 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-291 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-291 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-291 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-292 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-292 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-292 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-292 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-293 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-293 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-293 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-293 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-294 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-294 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-294 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-294 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-295 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-295 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-295 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-295 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-296 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-296 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-296 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-296 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-297 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-297 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-297 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-297 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-298 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-298 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-298 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-298 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-299 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-299 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-299 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-299 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-3 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-3 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-3 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-3 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-30 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-30 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-30 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-30 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-300 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-300 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-300 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-300 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-301 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-301 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-301 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-301 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-302 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-302 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-302 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-302 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-303 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-303 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-303 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-303 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-304 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-304 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-304 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-304 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-305 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-305 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-305 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-305 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-306 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-306 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-306 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-306 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-307 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-307 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-307 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-307 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-308 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-308 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-308 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-308 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-309 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-309 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-309 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-309 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-31 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-31 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-31 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-31 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-310 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-310 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-310 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-310 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-311 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-311 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-311 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-311 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-312 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-312 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-312 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-312 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-313 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-313 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-313 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-313 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-314 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-314 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-314 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-314 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-315 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-315 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-315 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-315 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-316 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-316 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-316 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-316 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-317 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-317 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-317 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-317 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-318 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-318 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-318 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-318 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-319 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-319 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-319 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-319 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-32 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-32 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-32 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-32 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-320 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-320 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-320 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-320 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-321 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-321 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-321 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-321 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-322 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-322 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-322 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-322 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-323 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-323 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-323 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-323 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-324 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-324 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-324 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-324 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-325 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-325 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-325 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-325 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-326 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-326 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-326 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-326 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-327 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-327 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-327 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-327 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-328 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-328 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-328 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-328 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-329 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-329 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-329 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-329 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-33 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-33 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-33 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-33 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-330 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-330 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-330 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-330 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-331 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-331 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-331 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-331 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-332 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-332 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-332 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-332 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-333 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-333 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-333 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-333 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-334 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-334 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-334 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-334 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-335 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-335 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-335 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-335 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-336 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-336 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-336 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-336 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-337 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-337 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-337 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-337 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-338 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-338 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-338 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-338 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-339 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-339 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-339 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-339 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-34 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-34 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-34 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-34 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-340 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-340 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-340 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-340 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-341 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-341 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-341 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-341 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-342 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-342 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-342 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-342 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-343 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-343 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-343 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-343 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-344 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-344 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-344 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-344 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-345 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-345 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-345 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-345 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-346 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-346 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-346 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-346 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-347 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-347 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-347 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-347 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-348 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-348 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-348 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-348 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-349 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-349 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-349 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-349 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-35 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-35 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-35 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-35 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-350 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-350 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-350 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-350 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-351 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-351 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-351 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-351 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-352 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-352 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-352 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-352 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-353 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-353 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-353 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-353 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-354 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-354 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-354 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-354 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-355 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-355 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-355 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-355 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-356 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-356 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-356 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-356 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-357 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-357 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-357 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-357 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-358 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-358 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-358 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-358 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-359 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-359 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-359 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-359 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-36 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-36 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-36 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-36 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-360 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-360 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-360 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-360 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-361 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-361 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-361 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-361 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-362 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-362 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-362 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-362 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-363 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-363 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-363 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-363 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-364 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-364 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-364 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-364 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-365 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-365 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-365 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-365 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-366 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-366 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-366 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-366 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-367 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-367 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-367 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-367 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-368 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-368 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-368 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-368 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-369 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-369 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-369 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-369 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-37 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-37 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-37 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-37 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-370 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-370 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-370 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-370 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-371 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-371 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-371 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-371 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-372 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-372 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-372 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-372 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-373 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-373 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-373 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-373 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-374 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-374 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-374 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-374 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-375 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-375 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-375 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-375 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-376 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-376 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-376 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-376 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-377 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-377 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-377 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-377 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-378 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-378 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-378 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-378 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-379 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-379 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-379 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-379 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-38 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-38 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-38 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-38 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-380 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-380 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-380 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-380 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-381 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-381 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-381 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-381 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-382 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-382 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-382 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-382 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-383 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-383 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-383 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-383 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-384 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-384 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-384 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-384 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-385 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-385 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-385 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-385 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-386 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-386 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-386 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-386 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-387 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-387 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-387 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-387 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-388 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-388 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-388 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-388 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-389 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-389 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-389 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-389 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-39 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-39 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-39 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-39 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-390 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-390 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-390 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-390 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-391 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-391 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-391 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-391 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-392 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-392 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-392 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-392 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-393 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-393 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-393 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-393 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-394 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-394 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-394 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-394 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-395 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-395 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-395 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-395 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-396 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-396 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-396 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-396 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-397 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-397 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-397 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-397 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-398 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-398 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-398 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-398 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-399 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-399 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-399 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-399 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-4 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-4 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-4 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-4 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-40 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-40 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-40 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-40 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-400 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-400 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-400 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-400 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-401 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-401 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-401 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-401 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-402 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-402 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-402 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-402 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-403 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-403 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-403 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-403 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-404 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-404 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-404 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-404 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-405 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-405 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-405 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-405 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-406 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-406 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-406 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-406 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-407 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-407 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-407 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-407 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-408 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-408 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-408 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-408 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-409 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-409 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-409 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-409 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-41 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-41 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-41 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-41 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-410 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-410 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-410 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-410 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-411 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-411 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-411 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-411 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-412 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-412 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-412 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-412 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-413 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-413 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-413 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-413 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-414 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-414 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-414 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-414 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-415 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-415 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-415 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-415 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-416 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-416 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-416 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-416 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-417 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-417 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-417 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-417 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-418 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-418 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-418 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-418 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-419 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-419 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-419 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-419 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-42 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-42 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-42 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-42 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-420 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-420 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-420 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-420 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-421 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-421 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-421 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-421 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-422 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-422 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-422 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-422 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-423 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-423 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-423 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-423 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-424 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-424 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-424 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-424 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-425 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-425 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-425 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-425 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-426 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-426 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-426 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-426 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-427 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-427 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-427 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-427 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-428 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-428 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-428 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-428 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-429 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-429 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-429 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-429 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-43 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-43 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-43 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-43 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-430 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-430 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-430 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-430 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-431 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-431 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-431 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-431 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-432 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-432 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-432 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-432 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-433 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-433 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-433 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-433 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-434 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-434 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-434 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-434 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-435 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-435 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-435 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-435 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-436 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-436 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-436 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-436 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-437 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-437 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-437 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-437 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-438 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-438 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-438 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-438 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-439 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-439 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-439 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-439 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-44 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-44 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-44 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-44 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-440 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-440 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-440 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-440 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-441 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-441 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-441 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-441 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-442 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-442 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-442 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-442 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-443 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-443 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-443 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-443 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-444 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-444 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-444 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-444 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-445 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-445 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-445 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-445 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-446 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-446 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-446 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-446 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-447 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-447 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-447 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-447 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-448 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-448 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-448 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-448 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-449 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-449 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-449 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-449 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-45 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-45 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-45 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-45 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-450 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-450 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-450 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-450 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-451 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-451 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-451 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-451 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-452 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-452 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-452 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-452 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-453 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-453 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-453 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-453 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-454 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-454 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-454 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-454 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-455 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-455 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-455 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-455 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-456 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-456 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-456 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-456 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-457 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-457 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-457 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-457 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-458 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-458 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-458 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-458 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-459 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-459 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-459 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-459 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-46 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-46 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-46 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-46 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-460 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-460 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-460 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-460 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-461 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-461 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-461 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-461 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-462 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-462 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-462 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-462 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-463 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-463 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-463 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-463 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-464 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-464 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-464 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-464 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-465 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-465 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-465 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-465 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-466 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-466 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-466 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-466 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-467 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-467 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-467 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-467 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-468 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-468 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-468 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-468 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-469 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-469 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-469 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-469 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-47 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-47 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-47 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-47 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-470 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-470 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-470 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-470 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-471 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-471 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-471 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-471 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-472 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-472 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-472 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-472 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-473 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-473 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-473 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-473 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-474 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-474 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-474 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-474 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-475 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-475 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-475 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-475 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-476 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-476 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-476 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-476 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-477 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-477 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-477 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-477 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-478 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-478 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-478 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-478 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-479 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-479 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-479 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-479 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-48 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-48 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-48 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-48 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-480 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-480 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-480 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-480 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-481 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-481 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-481 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-481 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-482 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-482 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-482 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-482 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-483 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-483 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-483 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-483 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-484 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-484 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-484 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-484 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-485 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-485 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-485 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-485 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-486 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-486 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-486 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-486 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-487 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-487 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-487 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-487 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-488 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-488 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-488 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-488 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-489 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-489 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-489 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-489 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-49 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-49 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-49 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-49 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-490 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-490 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-490 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-490 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-491 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-491 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-491 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-491 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-492 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-492 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-492 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-492 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-493 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-493 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-493 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-493 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-494 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-494 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-494 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-494 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-495 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-495 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-495 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-495 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-496 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-496 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-496 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-496 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-497 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-497 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-497 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-497 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-498 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-498 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-498 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-498 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-499 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-499 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-499 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-499 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-5 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-5 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-5 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-5 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-50 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-50 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-50 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-50 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-500 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-500 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-500 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-500 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-501 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-501 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-501 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-501 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-502 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-502 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-502 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-502 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-503 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-503 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-503 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-503 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-504 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-504 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-504 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-504 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-505 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-505 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-505 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-505 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-506 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-506 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-506 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-506 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-507 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-507 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-507 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-507 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-508 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-508 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-508 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-508 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-509 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-509 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-509 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-509 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-51 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-51 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-51 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-51 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-510 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-510 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-510 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-510 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-511 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-511 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-511 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-511 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-512 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-512 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-512 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-512 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-513 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-513 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-513 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-513 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-514 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-514 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-514 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-514 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-515 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-515 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-515 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-515 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-516 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-516 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-516 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-516 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-517 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-517 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-517 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-517 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-518 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-518 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-518 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-518 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-519 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-519 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-519 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-519 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-52 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-52 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-52 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-52 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-520 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-520 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-520 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-520 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-521 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-521 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-521 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-521 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-522 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-522 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-522 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-522 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-523 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-523 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-523 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-523 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-524 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-524 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-524 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-524 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-525 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-525 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-525 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-525 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-526 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-526 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-526 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-526 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-527 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-527 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-527 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-527 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-528 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-528 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-528 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-528 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-529 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-529 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-529 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-529 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-53 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-53 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-53 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-53 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-530 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-530 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-530 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-530 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-531 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-531 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-531 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-531 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-532 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-532 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-532 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-532 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-533 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-533 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-533 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-533 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-534 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-534 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-534 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-534 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-535 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-535 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-535 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-535 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-536 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-536 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-536 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-536 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-537 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-537 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-537 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-537 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-538 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-538 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-538 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-538 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-539 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-539 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-539 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-539 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-54 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-54 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-54 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-54 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-540 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-540 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-540 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-540 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-541 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-541 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-541 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-541 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-542 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-542 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-542 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-542 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-543 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-543 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-543 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-543 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-544 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-544 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-544 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-544 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-545 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-545 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-545 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-545 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-546 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-546 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-546 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-546 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-547 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-547 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-547 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-547 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-548 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-548 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-548 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-548 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-549 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-549 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-549 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-549 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-55 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-55 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-55 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-55 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-550 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-550 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-550 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-550 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-551 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-551 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-551 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-551 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-552 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-552 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-552 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-552 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-553 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-553 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-553 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-553 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-554 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-554 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-554 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-554 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-555 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-555 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-555 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-555 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-556 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-556 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-556 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-556 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-557 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-557 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-557 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-557 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-558 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-558 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-558 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-558 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-559 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-559 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-559 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-559 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-56 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-56 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-56 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-56 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-560 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-560 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-560 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-560 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-561 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-561 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-561 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-561 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-562 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-562 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-562 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-562 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-563 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-563 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-563 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-563 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-564 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-564 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-564 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-564 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-565 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-565 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-565 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-565 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-566 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-566 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-566 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-566 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-567 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-567 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-567 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-567 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-568 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-568 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-568 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-568 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-569 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-569 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-569 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-569 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-57 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-57 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-57 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-57 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-570 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-570 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-570 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-570 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-571 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-571 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-571 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-571 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-572 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-572 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-572 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-572 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-573 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-573 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-573 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-573 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-574 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-574 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-574 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-574 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-575 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-575 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-575 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-575 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-576 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-576 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-576 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-576 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-577 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-577 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-577 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-577 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-578 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-578 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-578 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-578 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-579 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-579 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-579 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-579 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-58 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-58 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-58 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-58 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-580 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-580 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-580 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-580 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-581 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-581 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-581 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-581 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-582 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-582 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-582 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-582 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-583 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-583 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-583 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-583 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-584 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-584 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-584 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-584 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-585 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-585 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-585 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-585 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-586 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-586 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-586 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-586 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-587 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-587 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-587 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-587 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-588 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-588 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-588 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-588 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-589 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-589 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-589 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-589 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-59 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-59 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-59 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-59 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-590 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-590 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-590 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-590 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-591 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-591 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-591 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-591 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-592 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-592 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-592 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-592 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-593 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-593 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-593 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-593 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-594 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-594 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-594 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-594 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-595 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-595 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-595 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-595 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-596 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-596 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-596 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-596 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-597 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-597 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-597 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-597 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-598 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-598 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-598 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-598 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-599 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-599 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-599 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-599 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-6 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-6 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-6 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-6 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-60 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-60 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-60 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-60 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-600 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-600 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-600 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-600 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-601 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-601 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-601 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-601 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-602 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-602 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-602 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-602 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-603 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-603 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-603 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-603 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-604 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-604 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-604 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-604 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-605 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-605 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-605 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-605 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-606 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-606 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-606 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-606 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-607 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-607 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-607 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-607 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-608 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-608 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-608 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-608 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-609 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-609 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-609 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-609 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-61 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-61 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-61 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-61 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-610 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-610 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-610 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-610 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-611 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-611 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-611 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-611 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-612 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-612 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-612 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-612 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-613 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-613 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-613 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-613 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-614 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-614 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-614 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-614 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-615 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-615 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-615 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-615 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-616 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-616 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-616 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-616 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-617 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-617 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-617 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-617 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-618 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-618 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-618 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-618 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-619 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-619 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-619 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-619 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-62 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-62 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-62 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-62 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-620 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-620 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-620 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-620 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-621 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-621 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-621 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-621 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-622 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-622 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-622 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-622 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-623 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-623 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-623 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-623 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-624 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-624 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-624 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-624 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-625 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-625 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-625 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-625 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-626 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-626 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-626 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-626 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-627 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-627 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-627 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-627 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-628 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-628 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-628 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-628 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-629 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-629 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-629 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-629 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-63 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-63 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-63 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-63 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-630 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-630 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-630 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-630 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-631 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-631 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-631 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-631 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-632 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-632 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-632 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-632 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-633 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-633 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-633 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-633 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-634 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-634 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-634 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-634 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-635 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-635 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-635 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-635 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-636 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-636 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-636 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-636 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-637 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-637 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-637 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-637 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-638 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-638 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-638 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-638 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-639 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-639 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-639 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-639 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-64 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-64 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-64 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-64 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-640 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-640 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-640 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-640 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-641 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-641 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-641 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-641 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-642 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-642 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-642 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-642 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-643 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-643 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-643 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-643 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-644 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-644 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-644 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-644 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-645 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-645 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-645 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-645 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-646 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-646 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-646 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-646 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-647 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-647 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-647 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-647 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-648 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-648 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-648 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-648 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-649 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-649 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-649 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-649 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-65 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-65 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-65 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-65 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-650 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-650 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-650 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-650 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-651 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-651 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-651 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-651 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-652 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-652 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-652 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-652 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-653 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-653 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-653 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-653 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-654 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-654 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-654 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-654 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-655 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-655 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-655 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-655 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-656 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-656 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-656 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-656 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-66 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-66 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-66 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-66 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-67 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-67 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-67 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-67 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-68 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-68 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-68 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-68 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-69 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-69 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-69 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-69 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-7 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-7 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-7 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-7 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-70 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-70 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-70 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-70 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-71 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-71 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-71 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-71 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-72 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-72 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-72 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-72 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-73 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-73 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-73 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-73 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-74 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-74 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-74 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-74 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-75 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-75 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-75 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-75 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-76 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-76 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-76 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-76 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-77 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-77 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-77 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-77 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-78 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-78 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-78 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-78 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-79 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-79 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-79 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-79 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-8 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-8 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-8 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-8 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-80 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-80 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-80 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-80 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-81 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-81 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-81 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-81 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-82 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-82 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-82 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-82 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-83 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-83 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-83 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-83 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-84 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-84 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-84 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-84 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-85 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-85 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-85 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-85 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-86 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-86 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-86 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-86 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-87 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-87 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-87 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-87 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-88 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-88 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-88 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-88 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-89 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-89 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-89 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-89 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-9 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-9 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-9 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-9 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-90 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-90 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-90 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-90 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-91 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-91 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-91 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-91 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-92 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-92 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-92 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-92 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-93 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-93 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-93 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-93 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-94 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-94 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-94 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-94 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-95 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-95 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-95 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-95 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-96 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-96 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-96 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-96 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-97 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-97 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-97 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-97 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-98 b/cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-98 similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-98 rename to cli/vendor/github.com/jmespath/go-jmespath/fuzz/testdata/expr-98 diff --git a/fn/vendor/github.com/jmespath/go-jmespath/interpreter.go b/cli/vendor/github.com/jmespath/go-jmespath/interpreter.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/interpreter.go rename to cli/vendor/github.com/jmespath/go-jmespath/interpreter.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/interpreter_test.go b/cli/vendor/github.com/jmespath/go-jmespath/interpreter_test.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/interpreter_test.go rename to cli/vendor/github.com/jmespath/go-jmespath/interpreter_test.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/lexer.go b/cli/vendor/github.com/jmespath/go-jmespath/lexer.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/lexer.go rename to cli/vendor/github.com/jmespath/go-jmespath/lexer.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/lexer_test.go b/cli/vendor/github.com/jmespath/go-jmespath/lexer_test.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/lexer_test.go rename to cli/vendor/github.com/jmespath/go-jmespath/lexer_test.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/parser.go b/cli/vendor/github.com/jmespath/go-jmespath/parser.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/parser.go rename to cli/vendor/github.com/jmespath/go-jmespath/parser.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/parser_test.go b/cli/vendor/github.com/jmespath/go-jmespath/parser_test.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/parser_test.go rename to cli/vendor/github.com/jmespath/go-jmespath/parser_test.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/toktype_string.go b/cli/vendor/github.com/jmespath/go-jmespath/toktype_string.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/toktype_string.go rename to cli/vendor/github.com/jmespath/go-jmespath/toktype_string.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/util.go b/cli/vendor/github.com/jmespath/go-jmespath/util.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/util.go rename to cli/vendor/github.com/jmespath/go-jmespath/util.go diff --git a/fn/vendor/github.com/jmespath/go-jmespath/util_test.go b/cli/vendor/github.com/jmespath/go-jmespath/util_test.go similarity index 100% rename from fn/vendor/github.com/jmespath/go-jmespath/util_test.go rename to cli/vendor/github.com/jmespath/go-jmespath/util_test.go diff --git a/fn/vendor/github.com/jmoiron/jsonq/.gitignore b/cli/vendor/github.com/jmoiron/jsonq/.gitignore similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/.gitignore rename to cli/vendor/github.com/jmoiron/jsonq/.gitignore diff --git a/fn/vendor/github.com/jmoiron/jsonq/LICENSE b/cli/vendor/github.com/jmoiron/jsonq/LICENSE similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/LICENSE rename to cli/vendor/github.com/jmoiron/jsonq/LICENSE diff --git a/fn/vendor/github.com/jmoiron/jsonq/README.md b/cli/vendor/github.com/jmoiron/jsonq/README.md similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/README.md rename to cli/vendor/github.com/jmoiron/jsonq/README.md diff --git a/fn/vendor/github.com/jmoiron/jsonq/autotest.sh b/cli/vendor/github.com/jmoiron/jsonq/autotest.sh similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/autotest.sh rename to cli/vendor/github.com/jmoiron/jsonq/autotest.sh diff --git a/fn/vendor/github.com/jmoiron/jsonq/doc.go b/cli/vendor/github.com/jmoiron/jsonq/doc.go similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/doc.go rename to cli/vendor/github.com/jmoiron/jsonq/doc.go diff --git a/fn/vendor/github.com/jmoiron/jsonq/jsonq.go b/cli/vendor/github.com/jmoiron/jsonq/jsonq.go similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/jsonq.go rename to cli/vendor/github.com/jmoiron/jsonq/jsonq.go diff --git a/fn/vendor/github.com/jmoiron/jsonq/jsonq_test.go b/cli/vendor/github.com/jmoiron/jsonq/jsonq_test.go similarity index 100% rename from fn/vendor/github.com/jmoiron/jsonq/jsonq_test.go rename to cli/vendor/github.com/jmoiron/jsonq/jsonq_test.go diff --git a/fn/vendor/github.com/juju/errgo/LICENSE b/cli/vendor/github.com/juju/errgo/LICENSE similarity index 100% rename from fn/vendor/github.com/juju/errgo/LICENSE rename to cli/vendor/github.com/juju/errgo/LICENSE diff --git a/fn/vendor/github.com/juju/errgo/README.markdown b/cli/vendor/github.com/juju/errgo/README.markdown similarity index 100% rename from fn/vendor/github.com/juju/errgo/README.markdown rename to cli/vendor/github.com/juju/errgo/README.markdown diff --git a/fn/vendor/github.com/juju/errgo/errors.go b/cli/vendor/github.com/juju/errgo/errors.go similarity index 100% rename from fn/vendor/github.com/juju/errgo/errors.go rename to cli/vendor/github.com/juju/errgo/errors.go diff --git a/fn/vendor/github.com/juju/errgo/errors/errors.go b/cli/vendor/github.com/juju/errgo/errors/errors.go similarity index 100% rename from fn/vendor/github.com/juju/errgo/errors/errors.go rename to cli/vendor/github.com/juju/errgo/errors/errors.go diff --git a/fn/vendor/github.com/juju/errgo/errors/errors_test.go b/cli/vendor/github.com/juju/errgo/errors/errors_test.go similarity index 100% rename from fn/vendor/github.com/juju/errgo/errors/errors_test.go rename to cli/vendor/github.com/juju/errgo/errors/errors_test.go diff --git a/fn/vendor/github.com/juju/errgo/errors/export_test.go b/cli/vendor/github.com/juju/errgo/errors/export_test.go similarity index 100% rename from fn/vendor/github.com/juju/errgo/errors/export_test.go rename to cli/vendor/github.com/juju/errgo/errors/export_test.go diff --git a/fn/vendor/github.com/juju/errgo/errors_test.go b/cli/vendor/github.com/juju/errgo/errors_test.go similarity index 100% rename from fn/vendor/github.com/juju/errgo/errors_test.go rename to cli/vendor/github.com/juju/errgo/errors_test.go diff --git a/fn/vendor/github.com/juju/errgo/export_test.go b/cli/vendor/github.com/juju/errgo/export_test.go similarity index 100% rename from fn/vendor/github.com/juju/errgo/export_test.go rename to cli/vendor/github.com/juju/errgo/export_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/.gitignore b/cli/vendor/github.com/mailru/easyjson/.gitignore similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/.gitignore rename to cli/vendor/github.com/mailru/easyjson/.gitignore diff --git a/fn/vendor/github.com/mailru/easyjson/.travis.yml b/cli/vendor/github.com/mailru/easyjson/.travis.yml similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/.travis.yml rename to cli/vendor/github.com/mailru/easyjson/.travis.yml diff --git a/fn/vendor/github.com/mailru/easyjson/LICENSE b/cli/vendor/github.com/mailru/easyjson/LICENSE similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/LICENSE rename to cli/vendor/github.com/mailru/easyjson/LICENSE diff --git a/fn/vendor/github.com/mailru/easyjson/Makefile b/cli/vendor/github.com/mailru/easyjson/Makefile similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/Makefile rename to cli/vendor/github.com/mailru/easyjson/Makefile diff --git a/fn/vendor/github.com/mailru/easyjson/README.md b/cli/vendor/github.com/mailru/easyjson/README.md similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/README.md rename to cli/vendor/github.com/mailru/easyjson/README.md diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/codec_test.go b/cli/vendor/github.com/mailru/easyjson/benchmark/codec_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/codec_test.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/codec_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/data.go b/cli/vendor/github.com/mailru/easyjson/benchmark/data.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/data.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/data.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/data_codec.go b/cli/vendor/github.com/mailru/easyjson/benchmark/data_codec.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/data_codec.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/data_codec.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/data_ffjson.go b/cli/vendor/github.com/mailru/easyjson/benchmark/data_ffjson.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/data_ffjson.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/data_ffjson.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/data_var.go b/cli/vendor/github.com/mailru/easyjson/benchmark/data_var.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/data_var.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/data_var.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/default_test.go b/cli/vendor/github.com/mailru/easyjson/benchmark/default_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/default_test.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/default_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/dummy_test.go b/cli/vendor/github.com/mailru/easyjson/benchmark/dummy_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/dummy_test.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/dummy_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/easyjson_test.go b/cli/vendor/github.com/mailru/easyjson/benchmark/easyjson_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/easyjson_test.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/easyjson_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/example.json b/cli/vendor/github.com/mailru/easyjson/benchmark/example.json similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/example.json rename to cli/vendor/github.com/mailru/easyjson/benchmark/example.json diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/ffjson_test.go b/cli/vendor/github.com/mailru/easyjson/benchmark/ffjson_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/ffjson_test.go rename to cli/vendor/github.com/mailru/easyjson/benchmark/ffjson_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/benchmark/ujson.sh b/cli/vendor/github.com/mailru/easyjson/benchmark/ujson.sh similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/benchmark/ujson.sh rename to cli/vendor/github.com/mailru/easyjson/benchmark/ujson.sh diff --git a/fn/vendor/github.com/mailru/easyjson/bootstrap/bootstrap.go b/cli/vendor/github.com/mailru/easyjson/bootstrap/bootstrap.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/bootstrap/bootstrap.go rename to cli/vendor/github.com/mailru/easyjson/bootstrap/bootstrap.go diff --git a/fn/vendor/github.com/mailru/easyjson/buffer/pool.go b/cli/vendor/github.com/mailru/easyjson/buffer/pool.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/buffer/pool.go rename to cli/vendor/github.com/mailru/easyjson/buffer/pool.go diff --git a/fn/vendor/github.com/mailru/easyjson/buffer/pool_test.go b/cli/vendor/github.com/mailru/easyjson/buffer/pool_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/buffer/pool_test.go rename to cli/vendor/github.com/mailru/easyjson/buffer/pool_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/easyjson/main.go b/cli/vendor/github.com/mailru/easyjson/easyjson/main.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/easyjson/main.go rename to cli/vendor/github.com/mailru/easyjson/easyjson/main.go diff --git a/fn/vendor/github.com/mailru/easyjson/gen/decoder.go b/cli/vendor/github.com/mailru/easyjson/gen/decoder.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/gen/decoder.go rename to cli/vendor/github.com/mailru/easyjson/gen/decoder.go diff --git a/fn/vendor/github.com/mailru/easyjson/gen/encoder.go b/cli/vendor/github.com/mailru/easyjson/gen/encoder.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/gen/encoder.go rename to cli/vendor/github.com/mailru/easyjson/gen/encoder.go diff --git a/fn/vendor/github.com/mailru/easyjson/gen/generator.go b/cli/vendor/github.com/mailru/easyjson/gen/generator.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/gen/generator.go rename to cli/vendor/github.com/mailru/easyjson/gen/generator.go diff --git a/fn/vendor/github.com/mailru/easyjson/gen/generator_test.go b/cli/vendor/github.com/mailru/easyjson/gen/generator_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/gen/generator_test.go rename to cli/vendor/github.com/mailru/easyjson/gen/generator_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/helpers.go b/cli/vendor/github.com/mailru/easyjson/helpers.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/helpers.go rename to cli/vendor/github.com/mailru/easyjson/helpers.go diff --git a/fn/vendor/github.com/mailru/easyjson/jlexer/bytestostr.go b/cli/vendor/github.com/mailru/easyjson/jlexer/bytestostr.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/jlexer/bytestostr.go rename to cli/vendor/github.com/mailru/easyjson/jlexer/bytestostr.go diff --git a/fn/vendor/github.com/mailru/easyjson/jlexer/bytestostr_nounsafe.go b/cli/vendor/github.com/mailru/easyjson/jlexer/bytestostr_nounsafe.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/jlexer/bytestostr_nounsafe.go rename to cli/vendor/github.com/mailru/easyjson/jlexer/bytestostr_nounsafe.go diff --git a/fn/vendor/github.com/mailru/easyjson/jlexer/error.go b/cli/vendor/github.com/mailru/easyjson/jlexer/error.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/jlexer/error.go rename to cli/vendor/github.com/mailru/easyjson/jlexer/error.go diff --git a/fn/vendor/github.com/mailru/easyjson/jlexer/lexer.go b/cli/vendor/github.com/mailru/easyjson/jlexer/lexer.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/jlexer/lexer.go rename to cli/vendor/github.com/mailru/easyjson/jlexer/lexer.go diff --git a/fn/vendor/github.com/mailru/easyjson/jlexer/lexer_test.go b/cli/vendor/github.com/mailru/easyjson/jlexer/lexer_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/jlexer/lexer_test.go rename to cli/vendor/github.com/mailru/easyjson/jlexer/lexer_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/jwriter/writer.go b/cli/vendor/github.com/mailru/easyjson/jwriter/writer.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/jwriter/writer.go rename to cli/vendor/github.com/mailru/easyjson/jwriter/writer.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Bool.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Bool.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Bool.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Bool.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Float32.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Float32.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Float32.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Float32.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Float64.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Float64.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Float64.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Float64.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int16.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int16.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int16.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int16.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int32.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int32.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int32.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int32.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int64.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int64.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int64.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int64.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int8.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int8.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Int8.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Int8.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_String.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_String.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_String.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_String.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint16.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint16.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint16.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint16.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint32.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint32.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint32.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint32.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint64.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint64.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint64.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint64.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint8.go b/cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint8.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint8.go rename to cli/vendor/github.com/mailru/easyjson/opt/gotemplate_Uint8.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/optional/opt.go b/cli/vendor/github.com/mailru/easyjson/opt/optional/opt.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/optional/opt.go rename to cli/vendor/github.com/mailru/easyjson/opt/optional/opt.go diff --git a/fn/vendor/github.com/mailru/easyjson/opt/opts.go b/cli/vendor/github.com/mailru/easyjson/opt/opts.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/opt/opts.go rename to cli/vendor/github.com/mailru/easyjson/opt/opts.go diff --git a/fn/vendor/github.com/mailru/easyjson/parser/parser.go b/cli/vendor/github.com/mailru/easyjson/parser/parser.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/parser/parser.go rename to cli/vendor/github.com/mailru/easyjson/parser/parser.go diff --git a/fn/vendor/github.com/mailru/easyjson/parser/parser_unix.go b/cli/vendor/github.com/mailru/easyjson/parser/parser_unix.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/parser/parser_unix.go rename to cli/vendor/github.com/mailru/easyjson/parser/parser_unix.go diff --git a/fn/vendor/github.com/mailru/easyjson/parser/parser_windows.go b/cli/vendor/github.com/mailru/easyjson/parser/parser_windows.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/parser/parser_windows.go rename to cli/vendor/github.com/mailru/easyjson/parser/parser_windows.go diff --git a/fn/vendor/github.com/mailru/easyjson/raw.go b/cli/vendor/github.com/mailru/easyjson/raw.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/raw.go rename to cli/vendor/github.com/mailru/easyjson/raw.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/basic_test.go b/cli/vendor/github.com/mailru/easyjson/tests/basic_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/basic_test.go rename to cli/vendor/github.com/mailru/easyjson/tests/basic_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/data.go b/cli/vendor/github.com/mailru/easyjson/tests/data.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/data.go rename to cli/vendor/github.com/mailru/easyjson/tests/data.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/errors.go b/cli/vendor/github.com/mailru/easyjson/tests/errors.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/errors.go rename to cli/vendor/github.com/mailru/easyjson/tests/errors.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/errors_test.go b/cli/vendor/github.com/mailru/easyjson/tests/errors_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/errors_test.go rename to cli/vendor/github.com/mailru/easyjson/tests/errors_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/named_type.go b/cli/vendor/github.com/mailru/easyjson/tests/named_type.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/named_type.go rename to cli/vendor/github.com/mailru/easyjson/tests/named_type.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/nested_easy.go b/cli/vendor/github.com/mailru/easyjson/tests/nested_easy.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/nested_easy.go rename to cli/vendor/github.com/mailru/easyjson/tests/nested_easy.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/nothing.go b/cli/vendor/github.com/mailru/easyjson/tests/nothing.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/nothing.go rename to cli/vendor/github.com/mailru/easyjson/tests/nothing.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/omitempty.go b/cli/vendor/github.com/mailru/easyjson/tests/omitempty.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/omitempty.go rename to cli/vendor/github.com/mailru/easyjson/tests/omitempty.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/required_test.go b/cli/vendor/github.com/mailru/easyjson/tests/required_test.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/required_test.go rename to cli/vendor/github.com/mailru/easyjson/tests/required_test.go diff --git a/fn/vendor/github.com/mailru/easyjson/tests/snake.go b/cli/vendor/github.com/mailru/easyjson/tests/snake.go similarity index 100% rename from fn/vendor/github.com/mailru/easyjson/tests/snake.go rename to cli/vendor/github.com/mailru/easyjson/tests/snake.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/.travis.yml b/cli/vendor/github.com/mitchellh/mapstructure/.travis.yml similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/.travis.yml rename to cli/vendor/github.com/mitchellh/mapstructure/.travis.yml diff --git a/fn/vendor/github.com/mitchellh/mapstructure/LICENSE b/cli/vendor/github.com/mitchellh/mapstructure/LICENSE similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/LICENSE rename to cli/vendor/github.com/mitchellh/mapstructure/LICENSE diff --git a/fn/vendor/github.com/mitchellh/mapstructure/README.md b/cli/vendor/github.com/mitchellh/mapstructure/README.md similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/README.md rename to cli/vendor/github.com/mitchellh/mapstructure/README.md diff --git a/fn/vendor/github.com/mitchellh/mapstructure/decode_hooks.go b/cli/vendor/github.com/mitchellh/mapstructure/decode_hooks.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/decode_hooks.go rename to cli/vendor/github.com/mitchellh/mapstructure/decode_hooks.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/decode_hooks_test.go b/cli/vendor/github.com/mitchellh/mapstructure/decode_hooks_test.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/decode_hooks_test.go rename to cli/vendor/github.com/mitchellh/mapstructure/decode_hooks_test.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/error.go b/cli/vendor/github.com/mitchellh/mapstructure/error.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/error.go rename to cli/vendor/github.com/mitchellh/mapstructure/error.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/mapstructure.go b/cli/vendor/github.com/mitchellh/mapstructure/mapstructure.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/mapstructure.go rename to cli/vendor/github.com/mitchellh/mapstructure/mapstructure.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go b/cli/vendor/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go rename to cli/vendor/github.com/mitchellh/mapstructure/mapstructure_benchmark_test.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go b/cli/vendor/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go rename to cli/vendor/github.com/mitchellh/mapstructure/mapstructure_bugs_test.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/mapstructure_examples_test.go b/cli/vendor/github.com/mitchellh/mapstructure/mapstructure_examples_test.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/mapstructure_examples_test.go rename to cli/vendor/github.com/mitchellh/mapstructure/mapstructure_examples_test.go diff --git a/fn/vendor/github.com/mitchellh/mapstructure/mapstructure_test.go b/cli/vendor/github.com/mitchellh/mapstructure/mapstructure_test.go similarity index 100% rename from fn/vendor/github.com/mitchellh/mapstructure/mapstructure_test.go rename to cli/vendor/github.com/mitchellh/mapstructure/mapstructure_test.go diff --git a/fn/vendor/github.com/moby/moby/.dockerignore b/cli/vendor/github.com/moby/moby/.dockerignore similarity index 100% rename from fn/vendor/github.com/moby/moby/.dockerignore rename to cli/vendor/github.com/moby/moby/.dockerignore diff --git a/fn/vendor/github.com/moby/moby/.github/ISSUE_TEMPLATE.md b/cli/vendor/github.com/moby/moby/.github/ISSUE_TEMPLATE.md similarity index 100% rename from fn/vendor/github.com/moby/moby/.github/ISSUE_TEMPLATE.md rename to cli/vendor/github.com/moby/moby/.github/ISSUE_TEMPLATE.md diff --git a/fn/vendor/github.com/moby/moby/.github/PULL_REQUEST_TEMPLATE.md b/cli/vendor/github.com/moby/moby/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from fn/vendor/github.com/moby/moby/.github/PULL_REQUEST_TEMPLATE.md rename to cli/vendor/github.com/moby/moby/.github/PULL_REQUEST_TEMPLATE.md diff --git a/fn/vendor/github.com/moby/moby/.gitignore b/cli/vendor/github.com/moby/moby/.gitignore similarity index 100% rename from fn/vendor/github.com/moby/moby/.gitignore rename to cli/vendor/github.com/moby/moby/.gitignore diff --git a/fn/vendor/github.com/moby/moby/.mailmap b/cli/vendor/github.com/moby/moby/.mailmap similarity index 100% rename from fn/vendor/github.com/moby/moby/.mailmap rename to cli/vendor/github.com/moby/moby/.mailmap diff --git a/fn/vendor/github.com/moby/moby/AUTHORS b/cli/vendor/github.com/moby/moby/AUTHORS similarity index 100% rename from fn/vendor/github.com/moby/moby/AUTHORS rename to cli/vendor/github.com/moby/moby/AUTHORS diff --git a/fn/vendor/github.com/moby/moby/CHANGELOG.md b/cli/vendor/github.com/moby/moby/CHANGELOG.md similarity index 100% rename from fn/vendor/github.com/moby/moby/CHANGELOG.md rename to cli/vendor/github.com/moby/moby/CHANGELOG.md diff --git a/fn/vendor/github.com/moby/moby/CONTRIBUTING.md b/cli/vendor/github.com/moby/moby/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/moby/moby/CONTRIBUTING.md rename to cli/vendor/github.com/moby/moby/CONTRIBUTING.md diff --git a/fn/vendor/github.com/moby/moby/Dockerfile b/cli/vendor/github.com/moby/moby/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile rename to cli/vendor/github.com/moby/moby/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.aarch64 b/cli/vendor/github.com/moby/moby/Dockerfile.aarch64 similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.aarch64 rename to cli/vendor/github.com/moby/moby/Dockerfile.aarch64 diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.armhf b/cli/vendor/github.com/moby/moby/Dockerfile.armhf similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.armhf rename to cli/vendor/github.com/moby/moby/Dockerfile.armhf diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.ppc64le b/cli/vendor/github.com/moby/moby/Dockerfile.ppc64le similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.ppc64le rename to cli/vendor/github.com/moby/moby/Dockerfile.ppc64le diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.s390x b/cli/vendor/github.com/moby/moby/Dockerfile.s390x similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.s390x rename to cli/vendor/github.com/moby/moby/Dockerfile.s390x diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.simple b/cli/vendor/github.com/moby/moby/Dockerfile.simple similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.simple rename to cli/vendor/github.com/moby/moby/Dockerfile.simple diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.solaris b/cli/vendor/github.com/moby/moby/Dockerfile.solaris similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.solaris rename to cli/vendor/github.com/moby/moby/Dockerfile.solaris diff --git a/fn/vendor/github.com/moby/moby/Dockerfile.windows b/cli/vendor/github.com/moby/moby/Dockerfile.windows similarity index 100% rename from fn/vendor/github.com/moby/moby/Dockerfile.windows rename to cli/vendor/github.com/moby/moby/Dockerfile.windows diff --git a/fn/vendor/github.com/moby/moby/LICENSE b/cli/vendor/github.com/moby/moby/LICENSE similarity index 100% rename from fn/vendor/github.com/moby/moby/LICENSE rename to cli/vendor/github.com/moby/moby/LICENSE diff --git a/fn/vendor/github.com/moby/moby/MAINTAINERS b/cli/vendor/github.com/moby/moby/MAINTAINERS similarity index 100% rename from fn/vendor/github.com/moby/moby/MAINTAINERS rename to cli/vendor/github.com/moby/moby/MAINTAINERS diff --git a/fn/vendor/github.com/moby/moby/Makefile b/cli/vendor/github.com/moby/moby/Makefile similarity index 100% rename from fn/vendor/github.com/moby/moby/Makefile rename to cli/vendor/github.com/moby/moby/Makefile diff --git a/fn/vendor/github.com/moby/moby/NOTICE b/cli/vendor/github.com/moby/moby/NOTICE similarity index 100% rename from fn/vendor/github.com/moby/moby/NOTICE rename to cli/vendor/github.com/moby/moby/NOTICE diff --git a/fn/vendor/github.com/moby/moby/README.md b/cli/vendor/github.com/moby/moby/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/README.md rename to cli/vendor/github.com/moby/moby/README.md diff --git a/fn/vendor/github.com/moby/moby/ROADMAP.md b/cli/vendor/github.com/moby/moby/ROADMAP.md similarity index 100% rename from fn/vendor/github.com/moby/moby/ROADMAP.md rename to cli/vendor/github.com/moby/moby/ROADMAP.md diff --git a/fn/vendor/github.com/moby/moby/VENDORING.md b/cli/vendor/github.com/moby/moby/VENDORING.md similarity index 100% rename from fn/vendor/github.com/moby/moby/VENDORING.md rename to cli/vendor/github.com/moby/moby/VENDORING.md diff --git a/fn/vendor/github.com/moby/moby/VERSION b/cli/vendor/github.com/moby/moby/VERSION similarity index 100% rename from fn/vendor/github.com/moby/moby/VERSION rename to cli/vendor/github.com/moby/moby/VERSION diff --git a/fn/vendor/github.com/moby/moby/api/README.md b/cli/vendor/github.com/moby/moby/api/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/api/README.md rename to cli/vendor/github.com/moby/moby/api/README.md diff --git a/fn/vendor/github.com/moby/moby/api/common.go b/cli/vendor/github.com/moby/moby/api/common.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/common.go rename to cli/vendor/github.com/moby/moby/api/common.go diff --git a/fn/vendor/github.com/moby/moby/api/common_test.go b/cli/vendor/github.com/moby/moby/api/common_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/common_test.go rename to cli/vendor/github.com/moby/moby/api/common_test.go diff --git a/fn/vendor/github.com/moby/moby/api/common_unix.go b/cli/vendor/github.com/moby/moby/api/common_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/common_unix.go rename to cli/vendor/github.com/moby/moby/api/common_unix.go diff --git a/fn/vendor/github.com/moby/moby/api/common_windows.go b/cli/vendor/github.com/moby/moby/api/common_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/common_windows.go rename to cli/vendor/github.com/moby/moby/api/common_windows.go diff --git a/fn/vendor/github.com/moby/moby/api/errors/errors.go b/cli/vendor/github.com/moby/moby/api/errors/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/errors/errors.go rename to cli/vendor/github.com/moby/moby/api/errors/errors.go diff --git a/fn/vendor/github.com/moby/moby/api/fixtures/keyfile b/cli/vendor/github.com/moby/moby/api/fixtures/keyfile similarity index 100% rename from fn/vendor/github.com/moby/moby/api/fixtures/keyfile rename to cli/vendor/github.com/moby/moby/api/fixtures/keyfile diff --git a/fn/vendor/github.com/moby/moby/api/names.go b/cli/vendor/github.com/moby/moby/api/names.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/names.go rename to cli/vendor/github.com/moby/moby/api/names.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/decoder.go b/cli/vendor/github.com/moby/moby/api/server/httputils/decoder.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/decoder.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/decoder.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/errors.go b/cli/vendor/github.com/moby/moby/api/server/httputils/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/errors.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/errors.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/form.go b/cli/vendor/github.com/moby/moby/api/server/httputils/form.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/form.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/form.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/form_test.go b/cli/vendor/github.com/moby/moby/api/server/httputils/form_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/form_test.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/form_test.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/httputils.go b/cli/vendor/github.com/moby/moby/api/server/httputils/httputils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/httputils.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/httputils.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json.go b/cli/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json_go16.go b/cli/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json_go16.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json_go16.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/httputils_write_json_go16.go diff --git a/fn/vendor/github.com/moby/moby/api/server/httputils/write_log_stream.go b/cli/vendor/github.com/moby/moby/api/server/httputils/write_log_stream.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/httputils/write_log_stream.go rename to cli/vendor/github.com/moby/moby/api/server/httputils/write_log_stream.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware.go b/cli/vendor/github.com/moby/moby/api/server/middleware.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware.go rename to cli/vendor/github.com/moby/moby/api/server/middleware.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware/cors.go b/cli/vendor/github.com/moby/moby/api/server/middleware/cors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware/cors.go rename to cli/vendor/github.com/moby/moby/api/server/middleware/cors.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware/debug.go b/cli/vendor/github.com/moby/moby/api/server/middleware/debug.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware/debug.go rename to cli/vendor/github.com/moby/moby/api/server/middleware/debug.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware/experimental.go b/cli/vendor/github.com/moby/moby/api/server/middleware/experimental.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware/experimental.go rename to cli/vendor/github.com/moby/moby/api/server/middleware/experimental.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware/middleware.go b/cli/vendor/github.com/moby/moby/api/server/middleware/middleware.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware/middleware.go rename to cli/vendor/github.com/moby/moby/api/server/middleware/middleware.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware/version.go b/cli/vendor/github.com/moby/moby/api/server/middleware/version.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware/version.go rename to cli/vendor/github.com/moby/moby/api/server/middleware/version.go diff --git a/fn/vendor/github.com/moby/moby/api/server/middleware/version_test.go b/cli/vendor/github.com/moby/moby/api/server/middleware/version_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/middleware/version_test.go rename to cli/vendor/github.com/moby/moby/api/server/middleware/version_test.go diff --git a/fn/vendor/github.com/moby/moby/api/server/profiler.go b/cli/vendor/github.com/moby/moby/api/server/profiler.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/profiler.go rename to cli/vendor/github.com/moby/moby/api/server/profiler.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/build/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/build/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/build/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/build/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/build/build.go b/cli/vendor/github.com/moby/moby/api/server/router/build/build.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/build/build.go rename to cli/vendor/github.com/moby/moby/api/server/router/build/build.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/build/build_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/build/build_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/build/build_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/build/build_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/checkpoint/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/checkpoint/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/checkpoint/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/checkpoint/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint.go b/cli/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint.go rename to cli/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/checkpoint/checkpoint_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/container/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/container/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/container/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/container/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/container/container.go b/cli/vendor/github.com/moby/moby/api/server/router/container/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/container/container.go rename to cli/vendor/github.com/moby/moby/api/server/router/container/container.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/container/container_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/container/container_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/container/container_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/container/container_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/container/copy.go b/cli/vendor/github.com/moby/moby/api/server/router/container/copy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/container/copy.go rename to cli/vendor/github.com/moby/moby/api/server/router/container/copy.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/container/exec.go b/cli/vendor/github.com/moby/moby/api/server/router/container/exec.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/container/exec.go rename to cli/vendor/github.com/moby/moby/api/server/router/container/exec.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/container/inspect.go b/cli/vendor/github.com/moby/moby/api/server/router/container/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/container/inspect.go rename to cli/vendor/github.com/moby/moby/api/server/router/container/inspect.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/experimental.go b/cli/vendor/github.com/moby/moby/api/server/router/experimental.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/experimental.go rename to cli/vendor/github.com/moby/moby/api/server/router/experimental.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/image/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/image/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/image/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/image/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/image/image.go b/cli/vendor/github.com/moby/moby/api/server/router/image/image.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/image/image.go rename to cli/vendor/github.com/moby/moby/api/server/router/image/image.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/image/image_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/image/image_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/image/image_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/image/image_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/local.go b/cli/vendor/github.com/moby/moby/api/server/router/local.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/local.go rename to cli/vendor/github.com/moby/moby/api/server/router/local.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/network/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/network/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/network/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/network/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/network/filter.go b/cli/vendor/github.com/moby/moby/api/server/router/network/filter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/network/filter.go rename to cli/vendor/github.com/moby/moby/api/server/router/network/filter.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/network/filter_test.go b/cli/vendor/github.com/moby/moby/api/server/router/network/filter_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/network/filter_test.go rename to cli/vendor/github.com/moby/moby/api/server/router/network/filter_test.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/network/network.go b/cli/vendor/github.com/moby/moby/api/server/router/network/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/network/network.go rename to cli/vendor/github.com/moby/moby/api/server/router/network/network.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/network/network_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/network/network_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/network/network_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/network/network_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/plugin/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/plugin/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/plugin/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/plugin/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/plugin/plugin.go b/cli/vendor/github.com/moby/moby/api/server/router/plugin/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/plugin/plugin.go rename to cli/vendor/github.com/moby/moby/api/server/router/plugin/plugin.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/plugin/plugin_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/plugin/plugin_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/plugin/plugin_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/plugin/plugin_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/router.go b/cli/vendor/github.com/moby/moby/api/server/router/router.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/router.go rename to cli/vendor/github.com/moby/moby/api/server/router/router.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/swarm/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/swarm/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/swarm/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/swarm/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/swarm/cluster.go b/cli/vendor/github.com/moby/moby/api/server/router/swarm/cluster.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/swarm/cluster.go rename to cli/vendor/github.com/moby/moby/api/server/router/swarm/cluster.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/swarm/cluster_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/swarm/cluster_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/swarm/cluster_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/swarm/cluster_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/swarm/helpers.go b/cli/vendor/github.com/moby/moby/api/server/router/swarm/helpers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/swarm/helpers.go rename to cli/vendor/github.com/moby/moby/api/server/router/swarm/helpers.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/system/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/system/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/system/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/system/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/system/system.go b/cli/vendor/github.com/moby/moby/api/server/router/system/system.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/system/system.go rename to cli/vendor/github.com/moby/moby/api/server/router/system/system.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/system/system_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/system/system_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/system/system_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/system/system_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/volume/backend.go b/cli/vendor/github.com/moby/moby/api/server/router/volume/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/volume/backend.go rename to cli/vendor/github.com/moby/moby/api/server/router/volume/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/volume/volume.go b/cli/vendor/github.com/moby/moby/api/server/router/volume/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/volume/volume.go rename to cli/vendor/github.com/moby/moby/api/server/router/volume/volume.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router/volume/volume_routes.go b/cli/vendor/github.com/moby/moby/api/server/router/volume/volume_routes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router/volume/volume_routes.go rename to cli/vendor/github.com/moby/moby/api/server/router/volume/volume_routes.go diff --git a/fn/vendor/github.com/moby/moby/api/server/router_swapper.go b/cli/vendor/github.com/moby/moby/api/server/router_swapper.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/router_swapper.go rename to cli/vendor/github.com/moby/moby/api/server/router_swapper.go diff --git a/fn/vendor/github.com/moby/moby/api/server/server.go b/cli/vendor/github.com/moby/moby/api/server/server.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/server.go rename to cli/vendor/github.com/moby/moby/api/server/server.go diff --git a/fn/vendor/github.com/moby/moby/api/server/server_test.go b/cli/vendor/github.com/moby/moby/api/server/server_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/server/server_test.go rename to cli/vendor/github.com/moby/moby/api/server/server_test.go diff --git a/fn/vendor/github.com/moby/moby/api/swagger-gen.yaml b/cli/vendor/github.com/moby/moby/api/swagger-gen.yaml similarity index 100% rename from fn/vendor/github.com/moby/moby/api/swagger-gen.yaml rename to cli/vendor/github.com/moby/moby/api/swagger-gen.yaml diff --git a/fn/vendor/github.com/moby/moby/api/swagger.yaml b/cli/vendor/github.com/moby/moby/api/swagger.yaml similarity index 100% rename from fn/vendor/github.com/moby/moby/api/swagger.yaml rename to cli/vendor/github.com/moby/moby/api/swagger.yaml diff --git a/fn/vendor/github.com/moby/moby/api/templates/server/operation.gotmpl b/cli/vendor/github.com/moby/moby/api/templates/server/operation.gotmpl similarity index 100% rename from fn/vendor/github.com/moby/moby/api/templates/server/operation.gotmpl rename to cli/vendor/github.com/moby/moby/api/templates/server/operation.gotmpl diff --git a/fn/vendor/github.com/moby/moby/api/types/auth.go b/cli/vendor/github.com/moby/moby/api/types/auth.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/auth.go rename to cli/vendor/github.com/moby/moby/api/types/auth.go diff --git a/fn/vendor/github.com/moby/moby/api/types/backend/backend.go b/cli/vendor/github.com/moby/moby/api/types/backend/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/backend/backend.go rename to cli/vendor/github.com/moby/moby/api/types/backend/backend.go diff --git a/fn/vendor/github.com/moby/moby/api/types/blkiodev/blkio.go b/cli/vendor/github.com/moby/moby/api/types/blkiodev/blkio.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/blkiodev/blkio.go rename to cli/vendor/github.com/moby/moby/api/types/blkiodev/blkio.go diff --git a/fn/vendor/github.com/moby/moby/api/types/client.go b/cli/vendor/github.com/moby/moby/api/types/client.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/client.go rename to cli/vendor/github.com/moby/moby/api/types/client.go diff --git a/fn/vendor/github.com/moby/moby/api/types/configs.go b/cli/vendor/github.com/moby/moby/api/types/configs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/configs.go rename to cli/vendor/github.com/moby/moby/api/types/configs.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/config.go b/cli/vendor/github.com/moby/moby/api/types/container/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/config.go rename to cli/vendor/github.com/moby/moby/api/types/container/config.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/container_changes.go b/cli/vendor/github.com/moby/moby/api/types/container/container_changes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/container_changes.go rename to cli/vendor/github.com/moby/moby/api/types/container/container_changes.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/container_create.go b/cli/vendor/github.com/moby/moby/api/types/container/container_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/container_create.go rename to cli/vendor/github.com/moby/moby/api/types/container/container_create.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/container_top.go b/cli/vendor/github.com/moby/moby/api/types/container/container_top.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/container_top.go rename to cli/vendor/github.com/moby/moby/api/types/container/container_top.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/container_update.go b/cli/vendor/github.com/moby/moby/api/types/container/container_update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/container_update.go rename to cli/vendor/github.com/moby/moby/api/types/container/container_update.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/container_wait.go b/cli/vendor/github.com/moby/moby/api/types/container/container_wait.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/container_wait.go rename to cli/vendor/github.com/moby/moby/api/types/container/container_wait.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/host_config.go b/cli/vendor/github.com/moby/moby/api/types/container/host_config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/host_config.go rename to cli/vendor/github.com/moby/moby/api/types/container/host_config.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/hostconfig_unix.go b/cli/vendor/github.com/moby/moby/api/types/container/hostconfig_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/hostconfig_unix.go rename to cli/vendor/github.com/moby/moby/api/types/container/hostconfig_unix.go diff --git a/fn/vendor/github.com/moby/moby/api/types/container/hostconfig_windows.go b/cli/vendor/github.com/moby/moby/api/types/container/hostconfig_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/container/hostconfig_windows.go rename to cli/vendor/github.com/moby/moby/api/types/container/hostconfig_windows.go diff --git a/fn/vendor/github.com/moby/moby/api/types/error_response.go b/cli/vendor/github.com/moby/moby/api/types/error_response.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/error_response.go rename to cli/vendor/github.com/moby/moby/api/types/error_response.go diff --git a/fn/vendor/github.com/moby/moby/api/types/events/events.go b/cli/vendor/github.com/moby/moby/api/types/events/events.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/events/events.go rename to cli/vendor/github.com/moby/moby/api/types/events/events.go diff --git a/fn/vendor/github.com/moby/moby/api/types/filters/parse.go b/cli/vendor/github.com/moby/moby/api/types/filters/parse.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/filters/parse.go rename to cli/vendor/github.com/moby/moby/api/types/filters/parse.go diff --git a/fn/vendor/github.com/moby/moby/api/types/filters/parse_test.go b/cli/vendor/github.com/moby/moby/api/types/filters/parse_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/filters/parse_test.go rename to cli/vendor/github.com/moby/moby/api/types/filters/parse_test.go diff --git a/fn/vendor/github.com/moby/moby/api/types/graph_driver_data.go b/cli/vendor/github.com/moby/moby/api/types/graph_driver_data.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/graph_driver_data.go rename to cli/vendor/github.com/moby/moby/api/types/graph_driver_data.go diff --git a/fn/vendor/github.com/moby/moby/api/types/id_response.go b/cli/vendor/github.com/moby/moby/api/types/id_response.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/id_response.go rename to cli/vendor/github.com/moby/moby/api/types/id_response.go diff --git a/fn/vendor/github.com/moby/moby/api/types/image/image_history.go b/cli/vendor/github.com/moby/moby/api/types/image/image_history.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/image/image_history.go rename to cli/vendor/github.com/moby/moby/api/types/image/image_history.go diff --git a/fn/vendor/github.com/moby/moby/api/types/image_delete_response_item.go b/cli/vendor/github.com/moby/moby/api/types/image_delete_response_item.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/image_delete_response_item.go rename to cli/vendor/github.com/moby/moby/api/types/image_delete_response_item.go diff --git a/fn/vendor/github.com/moby/moby/api/types/image_summary.go b/cli/vendor/github.com/moby/moby/api/types/image_summary.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/image_summary.go rename to cli/vendor/github.com/moby/moby/api/types/image_summary.go diff --git a/fn/vendor/github.com/moby/moby/api/types/mount/mount.go b/cli/vendor/github.com/moby/moby/api/types/mount/mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/mount/mount.go rename to cli/vendor/github.com/moby/moby/api/types/mount/mount.go diff --git a/fn/vendor/github.com/moby/moby/api/types/network/network.go b/cli/vendor/github.com/moby/moby/api/types/network/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/network/network.go rename to cli/vendor/github.com/moby/moby/api/types/network/network.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugin.go b/cli/vendor/github.com/moby/moby/api/types/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugin.go rename to cli/vendor/github.com/moby/moby/api/types/plugin.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugin_device.go b/cli/vendor/github.com/moby/moby/api/types/plugin_device.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugin_device.go rename to cli/vendor/github.com/moby/moby/api/types/plugin_device.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugin_env.go b/cli/vendor/github.com/moby/moby/api/types/plugin_env.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugin_env.go rename to cli/vendor/github.com/moby/moby/api/types/plugin_env.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugin_interface_type.go b/cli/vendor/github.com/moby/moby/api/types/plugin_interface_type.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugin_interface_type.go rename to cli/vendor/github.com/moby/moby/api/types/plugin_interface_type.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugin_mount.go b/cli/vendor/github.com/moby/moby/api/types/plugin_mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugin_mount.go rename to cli/vendor/github.com/moby/moby/api/types/plugin_mount.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugin_responses.go b/cli/vendor/github.com/moby/moby/api/types/plugin_responses.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugin_responses.go rename to cli/vendor/github.com/moby/moby/api/types/plugin_responses.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.pb.go b/cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.pb.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.pb.go rename to cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.pb.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.proto b/cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.proto similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.proto rename to cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/entry.proto diff --git a/fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/gen.go b/cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/gen.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/gen.go rename to cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/gen.go diff --git a/fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/io.go b/cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/io.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/plugins/logdriver/io.go rename to cli/vendor/github.com/moby/moby/api/types/plugins/logdriver/io.go diff --git a/fn/vendor/github.com/moby/moby/api/types/port.go b/cli/vendor/github.com/moby/moby/api/types/port.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/port.go rename to cli/vendor/github.com/moby/moby/api/types/port.go diff --git a/fn/vendor/github.com/moby/moby/api/types/registry/authenticate.go b/cli/vendor/github.com/moby/moby/api/types/registry/authenticate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/registry/authenticate.go rename to cli/vendor/github.com/moby/moby/api/types/registry/authenticate.go diff --git a/fn/vendor/github.com/moby/moby/api/types/registry/registry.go b/cli/vendor/github.com/moby/moby/api/types/registry/registry.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/registry/registry.go rename to cli/vendor/github.com/moby/moby/api/types/registry/registry.go diff --git a/fn/vendor/github.com/moby/moby/api/types/seccomp.go b/cli/vendor/github.com/moby/moby/api/types/seccomp.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/seccomp.go rename to cli/vendor/github.com/moby/moby/api/types/seccomp.go diff --git a/fn/vendor/github.com/moby/moby/api/types/service_update_response.go b/cli/vendor/github.com/moby/moby/api/types/service_update_response.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/service_update_response.go rename to cli/vendor/github.com/moby/moby/api/types/service_update_response.go diff --git a/fn/vendor/github.com/moby/moby/api/types/stats.go b/cli/vendor/github.com/moby/moby/api/types/stats.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/stats.go rename to cli/vendor/github.com/moby/moby/api/types/stats.go diff --git a/fn/vendor/github.com/moby/moby/api/types/strslice/strslice.go b/cli/vendor/github.com/moby/moby/api/types/strslice/strslice.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/strslice/strslice.go rename to cli/vendor/github.com/moby/moby/api/types/strslice/strslice.go diff --git a/fn/vendor/github.com/moby/moby/api/types/strslice/strslice_test.go b/cli/vendor/github.com/moby/moby/api/types/strslice/strslice_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/strslice/strslice_test.go rename to cli/vendor/github.com/moby/moby/api/types/strslice/strslice_test.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/common.go b/cli/vendor/github.com/moby/moby/api/types/swarm/common.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/common.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/common.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/container.go b/cli/vendor/github.com/moby/moby/api/types/swarm/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/container.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/container.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/network.go b/cli/vendor/github.com/moby/moby/api/types/swarm/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/network.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/network.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/node.go b/cli/vendor/github.com/moby/moby/api/types/swarm/node.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/node.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/node.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/secret.go b/cli/vendor/github.com/moby/moby/api/types/swarm/secret.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/secret.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/secret.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/service.go b/cli/vendor/github.com/moby/moby/api/types/swarm/service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/service.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/service.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/swarm.go b/cli/vendor/github.com/moby/moby/api/types/swarm/swarm.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/swarm.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/swarm.go diff --git a/fn/vendor/github.com/moby/moby/api/types/swarm/task.go b/cli/vendor/github.com/moby/moby/api/types/swarm/task.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/swarm/task.go rename to cli/vendor/github.com/moby/moby/api/types/swarm/task.go diff --git a/fn/vendor/github.com/moby/moby/api/types/time/duration_convert.go b/cli/vendor/github.com/moby/moby/api/types/time/duration_convert.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/time/duration_convert.go rename to cli/vendor/github.com/moby/moby/api/types/time/duration_convert.go diff --git a/fn/vendor/github.com/moby/moby/api/types/time/duration_convert_test.go b/cli/vendor/github.com/moby/moby/api/types/time/duration_convert_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/time/duration_convert_test.go rename to cli/vendor/github.com/moby/moby/api/types/time/duration_convert_test.go diff --git a/fn/vendor/github.com/moby/moby/api/types/time/timestamp.go b/cli/vendor/github.com/moby/moby/api/types/time/timestamp.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/time/timestamp.go rename to cli/vendor/github.com/moby/moby/api/types/time/timestamp.go diff --git a/fn/vendor/github.com/moby/moby/api/types/time/timestamp_test.go b/cli/vendor/github.com/moby/moby/api/types/time/timestamp_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/time/timestamp_test.go rename to cli/vendor/github.com/moby/moby/api/types/time/timestamp_test.go diff --git a/fn/vendor/github.com/moby/moby/api/types/types.go b/cli/vendor/github.com/moby/moby/api/types/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/types.go rename to cli/vendor/github.com/moby/moby/api/types/types.go diff --git a/fn/vendor/github.com/moby/moby/api/types/versions/README.md b/cli/vendor/github.com/moby/moby/api/types/versions/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/versions/README.md rename to cli/vendor/github.com/moby/moby/api/types/versions/README.md diff --git a/fn/vendor/github.com/moby/moby/api/types/versions/compare.go b/cli/vendor/github.com/moby/moby/api/types/versions/compare.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/versions/compare.go rename to cli/vendor/github.com/moby/moby/api/types/versions/compare.go diff --git a/fn/vendor/github.com/moby/moby/api/types/versions/compare_test.go b/cli/vendor/github.com/moby/moby/api/types/versions/compare_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/versions/compare_test.go rename to cli/vendor/github.com/moby/moby/api/types/versions/compare_test.go diff --git a/fn/vendor/github.com/moby/moby/api/types/versions/v1p19/types.go b/cli/vendor/github.com/moby/moby/api/types/versions/v1p19/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/versions/v1p19/types.go rename to cli/vendor/github.com/moby/moby/api/types/versions/v1p19/types.go diff --git a/fn/vendor/github.com/moby/moby/api/types/versions/v1p20/types.go b/cli/vendor/github.com/moby/moby/api/types/versions/v1p20/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/versions/v1p20/types.go rename to cli/vendor/github.com/moby/moby/api/types/versions/v1p20/types.go diff --git a/fn/vendor/github.com/moby/moby/api/types/volume.go b/cli/vendor/github.com/moby/moby/api/types/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/volume.go rename to cli/vendor/github.com/moby/moby/api/types/volume.go diff --git a/fn/vendor/github.com/moby/moby/api/types/volume/volumes_create.go b/cli/vendor/github.com/moby/moby/api/types/volume/volumes_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/volume/volumes_create.go rename to cli/vendor/github.com/moby/moby/api/types/volume/volumes_create.go diff --git a/fn/vendor/github.com/moby/moby/api/types/volume/volumes_list.go b/cli/vendor/github.com/moby/moby/api/types/volume/volumes_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/api/types/volume/volumes_list.go rename to cli/vendor/github.com/moby/moby/api/types/volume/volumes_list.go diff --git a/fn/vendor/github.com/moby/moby/builder/builder.go b/cli/vendor/github.com/moby/moby/builder/builder.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/builder.go rename to cli/vendor/github.com/moby/moby/builder/builder.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/bflag.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/bflag.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/bflag.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/bflag.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/bflag_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/bflag_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/bflag_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/bflag_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/buildargs.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/buildargs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/buildargs.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/buildargs.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/buildargs_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/buildargs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/buildargs_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/buildargs_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/builder.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/builder.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/builder.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/builder.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/builder_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/builder_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/builder_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/builder_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/builder_unix.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/builder_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/builder_unix.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/builder_unix.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/builder_windows.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/builder_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/builder_windows.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/builder_windows.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/command/command.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/command/command.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/command/command.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/command/command.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/dispatchers_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/envVarTest b/cli/vendor/github.com/moby/moby/builder/dockerfile/envVarTest similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/envVarTest rename to cli/vendor/github.com/moby/moby/builder/dockerfile/envVarTest diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator_unix.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator_unix.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator_unix.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator_windows.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/evaluator_windows.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/evaluator_windows.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/imagecontext.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/imagecontext.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/imagecontext.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/imagecontext.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/internals.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/internals.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/internals.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/internals.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/internals_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/internals_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/internals_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/internals_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/internals_unix.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/internals_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/internals_unix.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/internals_unix.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/internals_windows.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/internals_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/internals_windows.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/internals_windows.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/internals_windows_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/internals_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/internals_windows_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/internals_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/mockbackend_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/mockbackend_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/mockbackend_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/mockbackend_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/dumper/main.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/dumper/main.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/dumper/main.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/dumper/main.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/json_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/json_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/json_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/json_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/line_parsers_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/parser.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/parser.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/parser.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/parser.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/parser_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/parser_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/parser_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/parser_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/split_command.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/split_command.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/split_command.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/split_command.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfile-line/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfile-line/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfile-line/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfile-line/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/env_no_value/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles-negative/shykes-nested-json/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-consuldock/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/brimstone-docker-consul/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/continueIndent/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/cpuguy83-nagios/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/docker/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/env/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-after-comment/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape-nonewline/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escape/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/escapes/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/flags/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/health/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/influxdb/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string-double/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-json-inside-string/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-single-quotes/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-bracket/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/jeztah-invalid-json-unterminated-string/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/json/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/kartar-entrypoint-oddities/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/lk4d4-the-edge-case-generator/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mail/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/multiple-volumes/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/mumble/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/nginx/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/tf2/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/weechat/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/Dockerfile b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/Dockerfile rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/result b/cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/result similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/result rename to cli/vendor/github.com/moby/moby/builder/dockerfile/parser/testfiles/znc/result diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/shell_parser.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/shell_parser.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/shell_parser.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/shell_parser.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/shell_parser_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/shell_parser_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/shell_parser_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/shell_parser_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/support.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/support.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/support.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/support.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/support_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/support_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/support_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/support_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/utils_test.go b/cli/vendor/github.com/moby/moby/builder/dockerfile/utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/utils_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerfile/utils_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerfile/wordsTest b/cli/vendor/github.com/moby/moby/builder/dockerfile/wordsTest similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerfile/wordsTest rename to cli/vendor/github.com/moby/moby/builder/dockerfile/wordsTest diff --git a/fn/vendor/github.com/moby/moby/builder/dockerignore.go b/cli/vendor/github.com/moby/moby/builder/dockerignore.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerignore.go rename to cli/vendor/github.com/moby/moby/builder/dockerignore.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerignore/dockerignore.go b/cli/vendor/github.com/moby/moby/builder/dockerignore/dockerignore.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerignore/dockerignore.go rename to cli/vendor/github.com/moby/moby/builder/dockerignore/dockerignore.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerignore/dockerignore_test.go b/cli/vendor/github.com/moby/moby/builder/dockerignore/dockerignore_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerignore/dockerignore_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerignore/dockerignore_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/dockerignore_test.go b/cli/vendor/github.com/moby/moby/builder/dockerignore_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/dockerignore_test.go rename to cli/vendor/github.com/moby/moby/builder/dockerignore_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/git.go b/cli/vendor/github.com/moby/moby/builder/git.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/git.go rename to cli/vendor/github.com/moby/moby/builder/git.go diff --git a/fn/vendor/github.com/moby/moby/builder/remote.go b/cli/vendor/github.com/moby/moby/builder/remote.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/remote.go rename to cli/vendor/github.com/moby/moby/builder/remote.go diff --git a/fn/vendor/github.com/moby/moby/builder/remote_test.go b/cli/vendor/github.com/moby/moby/builder/remote_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/remote_test.go rename to cli/vendor/github.com/moby/moby/builder/remote_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/remotecontext/filehash.go b/cli/vendor/github.com/moby/moby/builder/remotecontext/filehash.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/remotecontext/filehash.go rename to cli/vendor/github.com/moby/moby/builder/remotecontext/filehash.go diff --git a/fn/vendor/github.com/moby/moby/builder/remotecontext/lazycontext.go b/cli/vendor/github.com/moby/moby/builder/remotecontext/lazycontext.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/remotecontext/lazycontext.go rename to cli/vendor/github.com/moby/moby/builder/remotecontext/lazycontext.go diff --git a/fn/vendor/github.com/moby/moby/builder/tarsum.go b/cli/vendor/github.com/moby/moby/builder/tarsum.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/tarsum.go rename to cli/vendor/github.com/moby/moby/builder/tarsum.go diff --git a/fn/vendor/github.com/moby/moby/builder/tarsum_test.go b/cli/vendor/github.com/moby/moby/builder/tarsum_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/tarsum_test.go rename to cli/vendor/github.com/moby/moby/builder/tarsum_test.go diff --git a/fn/vendor/github.com/moby/moby/builder/utils_test.go b/cli/vendor/github.com/moby/moby/builder/utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/builder/utils_test.go rename to cli/vendor/github.com/moby/moby/builder/utils_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/cobra.go b/cli/vendor/github.com/moby/moby/cli/cobra.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/cobra.go rename to cli/vendor/github.com/moby/moby/cli/cobra.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile.go b/cli/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile.go rename to cli/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile_test.go b/cli/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile_test.go rename to cli/vendor/github.com/moby/moby/cli/command/bundlefile/bundlefile_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/checkpoint/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/checkpoint/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/checkpoint/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/checkpoint/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/checkpoint/create.go b/cli/vendor/github.com/moby/moby/cli/command/checkpoint/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/checkpoint/create.go rename to cli/vendor/github.com/moby/moby/cli/command/checkpoint/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/checkpoint/list.go b/cli/vendor/github.com/moby/moby/cli/command/checkpoint/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/checkpoint/list.go rename to cli/vendor/github.com/moby/moby/cli/command/checkpoint/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/checkpoint/remove.go b/cli/vendor/github.com/moby/moby/cli/command/checkpoint/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/checkpoint/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/checkpoint/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/cli.go b/cli/vendor/github.com/moby/moby/cli/command/cli.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/cli.go rename to cli/vendor/github.com/moby/moby/cli/command/cli.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/commands/commands.go b/cli/vendor/github.com/moby/moby/cli/command/commands/commands.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/commands/commands.go rename to cli/vendor/github.com/moby/moby/cli/command/commands/commands.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/attach.go b/cli/vendor/github.com/moby/moby/cli/command/container/attach.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/attach.go rename to cli/vendor/github.com/moby/moby/cli/command/container/attach.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/container/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/container/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/commit.go b/cli/vendor/github.com/moby/moby/cli/command/container/commit.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/commit.go rename to cli/vendor/github.com/moby/moby/cli/command/container/commit.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/cp.go b/cli/vendor/github.com/moby/moby/cli/command/container/cp.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/cp.go rename to cli/vendor/github.com/moby/moby/cli/command/container/cp.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/create.go b/cli/vendor/github.com/moby/moby/cli/command/container/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/create.go rename to cli/vendor/github.com/moby/moby/cli/command/container/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/diff.go b/cli/vendor/github.com/moby/moby/cli/command/container/diff.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/diff.go rename to cli/vendor/github.com/moby/moby/cli/command/container/diff.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/exec.go b/cli/vendor/github.com/moby/moby/cli/command/container/exec.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/exec.go rename to cli/vendor/github.com/moby/moby/cli/command/container/exec.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/exec_test.go b/cli/vendor/github.com/moby/moby/cli/command/container/exec_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/exec_test.go rename to cli/vendor/github.com/moby/moby/cli/command/container/exec_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/export.go b/cli/vendor/github.com/moby/moby/cli/command/container/export.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/export.go rename to cli/vendor/github.com/moby/moby/cli/command/container/export.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/hijack.go b/cli/vendor/github.com/moby/moby/cli/command/container/hijack.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/hijack.go rename to cli/vendor/github.com/moby/moby/cli/command/container/hijack.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/container/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/container/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/kill.go b/cli/vendor/github.com/moby/moby/cli/command/container/kill.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/kill.go rename to cli/vendor/github.com/moby/moby/cli/command/container/kill.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/list.go b/cli/vendor/github.com/moby/moby/cli/command/container/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/list.go rename to cli/vendor/github.com/moby/moby/cli/command/container/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/logs.go b/cli/vendor/github.com/moby/moby/cli/command/container/logs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/logs.go rename to cli/vendor/github.com/moby/moby/cli/command/container/logs.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/opts.go b/cli/vendor/github.com/moby/moby/cli/command/container/opts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/opts.go rename to cli/vendor/github.com/moby/moby/cli/command/container/opts.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/opts_test.go b/cli/vendor/github.com/moby/moby/cli/command/container/opts_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/opts_test.go rename to cli/vendor/github.com/moby/moby/cli/command/container/opts_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/pause.go b/cli/vendor/github.com/moby/moby/cli/command/container/pause.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/pause.go rename to cli/vendor/github.com/moby/moby/cli/command/container/pause.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/port.go b/cli/vendor/github.com/moby/moby/cli/command/container/port.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/port.go rename to cli/vendor/github.com/moby/moby/cli/command/container/port.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/prune.go b/cli/vendor/github.com/moby/moby/cli/command/container/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/prune.go rename to cli/vendor/github.com/moby/moby/cli/command/container/prune.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/ps_test.go b/cli/vendor/github.com/moby/moby/cli/command/container/ps_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/ps_test.go rename to cli/vendor/github.com/moby/moby/cli/command/container/ps_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/rename.go b/cli/vendor/github.com/moby/moby/cli/command/container/rename.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/rename.go rename to cli/vendor/github.com/moby/moby/cli/command/container/rename.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/restart.go b/cli/vendor/github.com/moby/moby/cli/command/container/restart.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/restart.go rename to cli/vendor/github.com/moby/moby/cli/command/container/restart.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/rm.go b/cli/vendor/github.com/moby/moby/cli/command/container/rm.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/rm.go rename to cli/vendor/github.com/moby/moby/cli/command/container/rm.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/run.go b/cli/vendor/github.com/moby/moby/cli/command/container/run.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/run.go rename to cli/vendor/github.com/moby/moby/cli/command/container/run.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/start.go b/cli/vendor/github.com/moby/moby/cli/command/container/start.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/start.go rename to cli/vendor/github.com/moby/moby/cli/command/container/start.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/stats.go b/cli/vendor/github.com/moby/moby/cli/command/container/stats.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/stats.go rename to cli/vendor/github.com/moby/moby/cli/command/container/stats.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/stats_helpers.go b/cli/vendor/github.com/moby/moby/cli/command/container/stats_helpers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/stats_helpers.go rename to cli/vendor/github.com/moby/moby/cli/command/container/stats_helpers.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/stats_unit_test.go b/cli/vendor/github.com/moby/moby/cli/command/container/stats_unit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/stats_unit_test.go rename to cli/vendor/github.com/moby/moby/cli/command/container/stats_unit_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/stop.go b/cli/vendor/github.com/moby/moby/cli/command/container/stop.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/stop.go rename to cli/vendor/github.com/moby/moby/cli/command/container/stop.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/testdata/utf16.env b/cli/vendor/github.com/moby/moby/cli/command/container/testdata/utf16.env similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/testdata/utf16.env rename to cli/vendor/github.com/moby/moby/cli/command/container/testdata/utf16.env diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/testdata/utf16be.env b/cli/vendor/github.com/moby/moby/cli/command/container/testdata/utf16be.env similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/testdata/utf16be.env rename to cli/vendor/github.com/moby/moby/cli/command/container/testdata/utf16be.env diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/testdata/utf8.env b/cli/vendor/github.com/moby/moby/cli/command/container/testdata/utf8.env similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/testdata/utf8.env rename to cli/vendor/github.com/moby/moby/cli/command/container/testdata/utf8.env diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/testdata/valid.env b/cli/vendor/github.com/moby/moby/cli/command/container/testdata/valid.env similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/testdata/valid.env rename to cli/vendor/github.com/moby/moby/cli/command/container/testdata/valid.env diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/testdata/valid.label b/cli/vendor/github.com/moby/moby/cli/command/container/testdata/valid.label similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/testdata/valid.label rename to cli/vendor/github.com/moby/moby/cli/command/container/testdata/valid.label diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/top.go b/cli/vendor/github.com/moby/moby/cli/command/container/top.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/top.go rename to cli/vendor/github.com/moby/moby/cli/command/container/top.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/tty.go b/cli/vendor/github.com/moby/moby/cli/command/container/tty.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/tty.go rename to cli/vendor/github.com/moby/moby/cli/command/container/tty.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/unpause.go b/cli/vendor/github.com/moby/moby/cli/command/container/unpause.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/unpause.go rename to cli/vendor/github.com/moby/moby/cli/command/container/unpause.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/update.go b/cli/vendor/github.com/moby/moby/cli/command/container/update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/update.go rename to cli/vendor/github.com/moby/moby/cli/command/container/update.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/utils.go b/cli/vendor/github.com/moby/moby/cli/command/container/utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/utils.go rename to cli/vendor/github.com/moby/moby/cli/command/container/utils.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/container/wait.go b/cli/vendor/github.com/moby/moby/cli/command/container/wait.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/container/wait.go rename to cli/vendor/github.com/moby/moby/cli/command/container/wait.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/events_utils.go b/cli/vendor/github.com/moby/moby/cli/command/events_utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/events_utils.go rename to cli/vendor/github.com/moby/moby/cli/command/events_utils.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/checkpoint.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/checkpoint.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/checkpoint.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/checkpoint.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/checkpoint_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/checkpoint_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/checkpoint_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/checkpoint_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/container.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/container.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/container.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/container_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/container_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/container_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/container_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/custom.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/custom.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/custom.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/custom.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/custom_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/custom_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/custom_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/custom_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/diff.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/diff.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/diff.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/diff.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/diff_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/diff_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/diff_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/diff_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/disk_usage.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/disk_usage.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/disk_usage.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/disk_usage.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/disk_usage_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/disk_usage_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/disk_usage_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/disk_usage_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/formatter.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/formatter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/formatter.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/formatter.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/image.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/image.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/image.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/image.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/image_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/image_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/image_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/image_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/network.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/network.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/network.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/network_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/network_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/network_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/network_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/node.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/node.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/node.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/node.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/node_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/node_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/node_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/node_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/plugin.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/plugin.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/plugin.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/plugin_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/plugin_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/plugin_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/plugin_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/reflect.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/reflect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/reflect.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/reflect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/reflect_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/reflect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/reflect_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/reflect_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/secret.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/secret.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/secret.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/secret.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/secret_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/secret_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/secret_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/secret_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/service.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/service.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/service.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/service_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/service_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/service_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/service_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/stats.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/stats.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/stats.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/stats.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/stats_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/stats_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/stats_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/stats_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/task.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/task.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/task.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/task.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/task_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/task_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/task_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/task_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/volume.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/volume.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/volume.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/formatter/volume_test.go b/cli/vendor/github.com/moby/moby/cli/command/formatter/volume_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/formatter/volume_test.go rename to cli/vendor/github.com/moby/moby/cli/command/formatter/volume_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/idresolver/client_test.go b/cli/vendor/github.com/moby/moby/cli/command/idresolver/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/idresolver/client_test.go rename to cli/vendor/github.com/moby/moby/cli/command/idresolver/client_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/idresolver/idresolver.go b/cli/vendor/github.com/moby/moby/cli/command/idresolver/idresolver.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/idresolver/idresolver.go rename to cli/vendor/github.com/moby/moby/cli/command/idresolver/idresolver.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/idresolver/idresolver_test.go b/cli/vendor/github.com/moby/moby/cli/command/idresolver/idresolver_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/idresolver/idresolver_test.go rename to cli/vendor/github.com/moby/moby/cli/command/idresolver/idresolver_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/build.go b/cli/vendor/github.com/moby/moby/cli/command/image/build.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/build.go rename to cli/vendor/github.com/moby/moby/cli/command/image/build.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/build/context.go b/cli/vendor/github.com/moby/moby/cli/command/image/build/context.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/build/context.go rename to cli/vendor/github.com/moby/moby/cli/command/image/build/context.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/build/context_test.go b/cli/vendor/github.com/moby/moby/cli/command/image/build/context_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/build/context_test.go rename to cli/vendor/github.com/moby/moby/cli/command/image/build/context_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/build/context_unix.go b/cli/vendor/github.com/moby/moby/cli/command/image/build/context_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/build/context_unix.go rename to cli/vendor/github.com/moby/moby/cli/command/image/build/context_unix.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/build/context_windows.go b/cli/vendor/github.com/moby/moby/cli/command/image/build/context_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/build/context_windows.go rename to cli/vendor/github.com/moby/moby/cli/command/image/build/context_windows.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/image/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/image/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/history.go b/cli/vendor/github.com/moby/moby/cli/command/image/history.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/history.go rename to cli/vendor/github.com/moby/moby/cli/command/image/history.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/import.go b/cli/vendor/github.com/moby/moby/cli/command/image/import.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/import.go rename to cli/vendor/github.com/moby/moby/cli/command/image/import.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/image/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/image/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/list.go b/cli/vendor/github.com/moby/moby/cli/command/image/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/list.go rename to cli/vendor/github.com/moby/moby/cli/command/image/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/load.go b/cli/vendor/github.com/moby/moby/cli/command/image/load.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/load.go rename to cli/vendor/github.com/moby/moby/cli/command/image/load.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/prune.go b/cli/vendor/github.com/moby/moby/cli/command/image/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/prune.go rename to cli/vendor/github.com/moby/moby/cli/command/image/prune.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/pull.go b/cli/vendor/github.com/moby/moby/cli/command/image/pull.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/pull.go rename to cli/vendor/github.com/moby/moby/cli/command/image/pull.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/push.go b/cli/vendor/github.com/moby/moby/cli/command/image/push.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/push.go rename to cli/vendor/github.com/moby/moby/cli/command/image/push.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/remove.go b/cli/vendor/github.com/moby/moby/cli/command/image/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/image/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/save.go b/cli/vendor/github.com/moby/moby/cli/command/image/save.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/save.go rename to cli/vendor/github.com/moby/moby/cli/command/image/save.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/tag.go b/cli/vendor/github.com/moby/moby/cli/command/image/tag.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/tag.go rename to cli/vendor/github.com/moby/moby/cli/command/image/tag.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/trust.go b/cli/vendor/github.com/moby/moby/cli/command/image/trust.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/trust.go rename to cli/vendor/github.com/moby/moby/cli/command/image/trust.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/image/trust_test.go b/cli/vendor/github.com/moby/moby/cli/command/image/trust_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/image/trust_test.go rename to cli/vendor/github.com/moby/moby/cli/command/image/trust_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/in.go b/cli/vendor/github.com/moby/moby/cli/command/in.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/in.go rename to cli/vendor/github.com/moby/moby/cli/command/in.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/inspect/inspector.go b/cli/vendor/github.com/moby/moby/cli/command/inspect/inspector.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/inspect/inspector.go rename to cli/vendor/github.com/moby/moby/cli/command/inspect/inspector.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/inspect/inspector_test.go b/cli/vendor/github.com/moby/moby/cli/command/inspect/inspector_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/inspect/inspector_test.go rename to cli/vendor/github.com/moby/moby/cli/command/inspect/inspector_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/network/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/network/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/connect.go b/cli/vendor/github.com/moby/moby/cli/command/network/connect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/connect.go rename to cli/vendor/github.com/moby/moby/cli/command/network/connect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/create.go b/cli/vendor/github.com/moby/moby/cli/command/network/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/create.go rename to cli/vendor/github.com/moby/moby/cli/command/network/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/disconnect.go b/cli/vendor/github.com/moby/moby/cli/command/network/disconnect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/disconnect.go rename to cli/vendor/github.com/moby/moby/cli/command/network/disconnect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/network/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/network/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/list.go b/cli/vendor/github.com/moby/moby/cli/command/network/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/list.go rename to cli/vendor/github.com/moby/moby/cli/command/network/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/prune.go b/cli/vendor/github.com/moby/moby/cli/command/network/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/prune.go rename to cli/vendor/github.com/moby/moby/cli/command/network/prune.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/network/remove.go b/cli/vendor/github.com/moby/moby/cli/command/network/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/network/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/network/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/client_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/client_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/client_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/node/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/node/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/demote.go b/cli/vendor/github.com/moby/moby/cli/command/node/demote.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/demote.go rename to cli/vendor/github.com/moby/moby/cli/command/node/demote.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/demote_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/demote_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/demote_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/demote_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/node/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/node/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/inspect_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/inspect_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/list.go b/cli/vendor/github.com/moby/moby/cli/command/node/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/list.go rename to cli/vendor/github.com/moby/moby/cli/command/node/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/list_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/list_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/list_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/opts.go b/cli/vendor/github.com/moby/moby/cli/command/node/opts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/opts.go rename to cli/vendor/github.com/moby/moby/cli/command/node/opts.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/promote.go b/cli/vendor/github.com/moby/moby/cli/command/node/promote.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/promote.go rename to cli/vendor/github.com/moby/moby/cli/command/node/promote.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/promote_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/promote_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/promote_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/promote_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/ps.go b/cli/vendor/github.com/moby/moby/cli/command/node/ps.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/ps.go rename to cli/vendor/github.com/moby/moby/cli/command/node/ps.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/ps_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/ps_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/ps_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/ps_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/remove.go b/cli/vendor/github.com/moby/moby/cli/command/node/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/node/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/remove_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/remove_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/remove_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden b/cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden rename to cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager-leader.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager.golden b/cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager.golden rename to cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.manager.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.simple.golden b/cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.simple.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.simple.golden rename to cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-inspect-pretty.simple.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.simple.golden b/cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.simple.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.simple.golden rename to cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.simple.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.with-errors.golden b/cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.with-errors.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.with-errors.golden rename to cli/vendor/github.com/moby/moby/cli/command/node/testdata/node-ps.with-errors.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/update.go b/cli/vendor/github.com/moby/moby/cli/command/node/update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/update.go rename to cli/vendor/github.com/moby/moby/cli/command/node/update.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/node/update_test.go b/cli/vendor/github.com/moby/moby/cli/command/node/update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/node/update_test.go rename to cli/vendor/github.com/moby/moby/cli/command/node/update_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/out.go b/cli/vendor/github.com/moby/moby/cli/command/out.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/out.go rename to cli/vendor/github.com/moby/moby/cli/command/out.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/create.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/create.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/disable.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/disable.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/disable.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/disable.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/enable.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/enable.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/enable.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/enable.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/install.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/install.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/install.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/install.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/list.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/list.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/push.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/push.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/push.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/push.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/remove.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/set.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/set.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/set.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/set.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/plugin/upgrade.go b/cli/vendor/github.com/moby/moby/cli/command/plugin/upgrade.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/plugin/upgrade.go rename to cli/vendor/github.com/moby/moby/cli/command/plugin/upgrade.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/prune/prune.go b/cli/vendor/github.com/moby/moby/cli/command/prune/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/prune/prune.go rename to cli/vendor/github.com/moby/moby/cli/command/prune/prune.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/registry.go b/cli/vendor/github.com/moby/moby/cli/command/registry.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/registry.go rename to cli/vendor/github.com/moby/moby/cli/command/registry.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/registry/login.go b/cli/vendor/github.com/moby/moby/cli/command/registry/login.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/registry/login.go rename to cli/vendor/github.com/moby/moby/cli/command/registry/login.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/registry/logout.go b/cli/vendor/github.com/moby/moby/cli/command/registry/logout.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/registry/logout.go rename to cli/vendor/github.com/moby/moby/cli/command/registry/logout.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/registry/search.go b/cli/vendor/github.com/moby/moby/cli/command/registry/search.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/registry/search.go rename to cli/vendor/github.com/moby/moby/cli/command/registry/search.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/client_test.go b/cli/vendor/github.com/moby/moby/cli/command/secret/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/client_test.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/client_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/secret/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/create.go b/cli/vendor/github.com/moby/moby/cli/command/secret/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/create.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/create_test.go b/cli/vendor/github.com/moby/moby/cli/command/secret/create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/create_test.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/create_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/secret/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/inspect_test.go b/cli/vendor/github.com/moby/moby/cli/command/secret/inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/inspect_test.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/ls.go b/cli/vendor/github.com/moby/moby/cli/command/secret/ls.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/ls.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/ls.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/ls_test.go b/cli/vendor/github.com/moby/moby/cli/command/secret/ls_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/ls_test.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/ls_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/remove.go b/cli/vendor/github.com/moby/moby/cli/command/secret/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/remove_test.go b/cli/vendor/github.com/moby/moby/cli/command/secret/remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/remove_test.go rename to cli/vendor/github.com/moby/moby/cli/command/secret/remove_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-create-with-name.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-create-with-name.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-create-with-name.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-create-with-name.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.json-template.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-with-format.simple-template.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.multiple-secrets-with-labels.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-inspect-without-format.single-secret.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-config-format.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-config-format.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-config-format.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-config-format.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-filter.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-filter.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-filter.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-filter.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-format.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-format.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-format.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-format.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-quiet-option.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-quiet-option.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-quiet-option.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list-with-quiet-option.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list.golden b/cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list.golden rename to cli/vendor/github.com/moby/moby/cli/command/secret/testdata/secret-list.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/service/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/service/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/create.go b/cli/vendor/github.com/moby/moby/cli/command/service/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/create.go rename to cli/vendor/github.com/moby/moby/cli/command/service/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/helpers.go b/cli/vendor/github.com/moby/moby/cli/command/service/helpers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/helpers.go rename to cli/vendor/github.com/moby/moby/cli/command/service/helpers.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/service/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/service/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/inspect_test.go b/cli/vendor/github.com/moby/moby/cli/command/service/inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/inspect_test.go rename to cli/vendor/github.com/moby/moby/cli/command/service/inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/list.go b/cli/vendor/github.com/moby/moby/cli/command/service/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/list.go rename to cli/vendor/github.com/moby/moby/cli/command/service/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/logs.go b/cli/vendor/github.com/moby/moby/cli/command/service/logs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/logs.go rename to cli/vendor/github.com/moby/moby/cli/command/service/logs.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/opts.go b/cli/vendor/github.com/moby/moby/cli/command/service/opts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/opts.go rename to cli/vendor/github.com/moby/moby/cli/command/service/opts.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/opts_test.go b/cli/vendor/github.com/moby/moby/cli/command/service/opts_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/opts_test.go rename to cli/vendor/github.com/moby/moby/cli/command/service/opts_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/parse.go b/cli/vendor/github.com/moby/moby/cli/command/service/parse.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/parse.go rename to cli/vendor/github.com/moby/moby/cli/command/service/parse.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/progress/progress.go b/cli/vendor/github.com/moby/moby/cli/command/service/progress/progress.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/progress/progress.go rename to cli/vendor/github.com/moby/moby/cli/command/service/progress/progress.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/ps.go b/cli/vendor/github.com/moby/moby/cli/command/service/ps.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/ps.go rename to cli/vendor/github.com/moby/moby/cli/command/service/ps.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/remove.go b/cli/vendor/github.com/moby/moby/cli/command/service/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/service/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/scale.go b/cli/vendor/github.com/moby/moby/cli/command/service/scale.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/scale.go rename to cli/vendor/github.com/moby/moby/cli/command/service/scale.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/trust.go b/cli/vendor/github.com/moby/moby/cli/command/service/trust.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/trust.go rename to cli/vendor/github.com/moby/moby/cli/command/service/trust.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/update.go b/cli/vendor/github.com/moby/moby/cli/command/service/update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/update.go rename to cli/vendor/github.com/moby/moby/cli/command/service/update.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/service/update_test.go b/cli/vendor/github.com/moby/moby/cli/command/service/update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/service/update_test.go rename to cli/vendor/github.com/moby/moby/cli/command/service/update_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/client_test.go b/cli/vendor/github.com/moby/moby/cli/command/stack/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/client_test.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/client_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/stack/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/common.go b/cli/vendor/github.com/moby/moby/cli/command/stack/common.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/common.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/common.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/deploy.go b/cli/vendor/github.com/moby/moby/cli/command/stack/deploy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/deploy.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/deploy.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/deploy_bundlefile.go b/cli/vendor/github.com/moby/moby/cli/command/stack/deploy_bundlefile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/deploy_bundlefile.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/deploy_bundlefile.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/deploy_composefile.go b/cli/vendor/github.com/moby/moby/cli/command/stack/deploy_composefile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/deploy_composefile.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/deploy_composefile.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/deploy_test.go b/cli/vendor/github.com/moby/moby/cli/command/stack/deploy_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/deploy_test.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/deploy_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/list.go b/cli/vendor/github.com/moby/moby/cli/command/stack/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/list.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/opts.go b/cli/vendor/github.com/moby/moby/cli/command/stack/opts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/opts.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/opts.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/ps.go b/cli/vendor/github.com/moby/moby/cli/command/stack/ps.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/ps.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/ps.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/remove.go b/cli/vendor/github.com/moby/moby/cli/command/stack/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/remove_test.go b/cli/vendor/github.com/moby/moby/cli/command/stack/remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/remove_test.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/remove_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/stack/services.go b/cli/vendor/github.com/moby/moby/cli/command/stack/services.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/stack/services.go rename to cli/vendor/github.com/moby/moby/cli/command/stack/services.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/client_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/client_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/client_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/init.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/init.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/init.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/init.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/init_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/init_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/init_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/init_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/join.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/join.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/join.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/join.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/join_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/join_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/join_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/join_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/join_token.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/join_token.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/join_token.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/join_token.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/join_token_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/join_token_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/join_token_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/join_token_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/leave.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/leave.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/leave.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/leave.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/leave_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/leave_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/leave_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/leave_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/opts.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/opts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/opts.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/opts.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/opts_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/opts_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/opts_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/opts_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init-autolock.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init-autolock.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init-autolock.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init-autolock.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/init-init.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-quiet.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-quiet.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-quiet.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-quiet.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-rotate.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-rotate.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-rotate.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager-rotate.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-manager.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker-quiet.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker-quiet.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker-quiet.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker-quiet.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/jointoken-worker.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-quiet.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate-quiet.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key-rotate.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/unlockkeys-unlock-key.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-all-flags-quiet.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-all-flags-quiet.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-all-flags-quiet.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-all-flags-quiet.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-autolock-unlock-key.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-autolock-unlock-key.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-autolock-unlock-key.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-autolock-unlock-key.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-noargs.golden b/cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-noargs.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-noargs.golden rename to cli/vendor/github.com/moby/moby/cli/command/swarm/testdata/update-noargs.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/unlock.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/unlock.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/unlock.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/unlock.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/unlock_key.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/unlock_key.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/unlock_key.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/unlock_key.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/unlock_key_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/unlock_key_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/unlock_key_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/unlock_key_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/unlock_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/unlock_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/unlock_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/unlock_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/update.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/update.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/update.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/swarm/update_test.go b/cli/vendor/github.com/moby/moby/cli/command/swarm/update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/swarm/update_test.go rename to cli/vendor/github.com/moby/moby/cli/command/swarm/update_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/system/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/system/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/df.go b/cli/vendor/github.com/moby/moby/cli/command/system/df.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/df.go rename to cli/vendor/github.com/moby/moby/cli/command/system/df.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/events.go b/cli/vendor/github.com/moby/moby/cli/command/system/events.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/events.go rename to cli/vendor/github.com/moby/moby/cli/command/system/events.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/info.go b/cli/vendor/github.com/moby/moby/cli/command/system/info.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/info.go rename to cli/vendor/github.com/moby/moby/cli/command/system/info.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/system/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/system/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/prune.go b/cli/vendor/github.com/moby/moby/cli/command/system/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/prune.go rename to cli/vendor/github.com/moby/moby/cli/command/system/prune.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/system/version.go b/cli/vendor/github.com/moby/moby/cli/command/system/version.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/system/version.go rename to cli/vendor/github.com/moby/moby/cli/command/system/version.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/task/print.go b/cli/vendor/github.com/moby/moby/cli/command/task/print.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/task/print.go rename to cli/vendor/github.com/moby/moby/cli/command/task/print.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/trust.go b/cli/vendor/github.com/moby/moby/cli/command/trust.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/trust.go rename to cli/vendor/github.com/moby/moby/cli/command/trust.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/utils.go b/cli/vendor/github.com/moby/moby/cli/command/utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/utils.go rename to cli/vendor/github.com/moby/moby/cli/command/utils.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/client_test.go b/cli/vendor/github.com/moby/moby/cli/command/volume/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/client_test.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/client_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/cmd.go b/cli/vendor/github.com/moby/moby/cli/command/volume/cmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/cmd.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/cmd.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/create.go b/cli/vendor/github.com/moby/moby/cli/command/volume/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/create.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/create.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/create_test.go b/cli/vendor/github.com/moby/moby/cli/command/volume/create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/create_test.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/create_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/inspect.go b/cli/vendor/github.com/moby/moby/cli/command/volume/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/inspect.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/inspect.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/inspect_test.go b/cli/vendor/github.com/moby/moby/cli/command/volume/inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/inspect_test.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/list.go b/cli/vendor/github.com/moby/moby/cli/command/volume/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/list.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/list.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/list_test.go b/cli/vendor/github.com/moby/moby/cli/command/volume/list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/list_test.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/list_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/prune.go b/cli/vendor/github.com/moby/moby/cli/command/volume/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/prune.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/prune.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/prune_test.go b/cli/vendor/github.com/moby/moby/cli/command/volume/prune_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/prune_test.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/prune_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/remove.go b/cli/vendor/github.com/moby/moby/cli/command/volume/remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/remove.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/remove.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/remove_test.go b/cli/vendor/github.com/moby/moby/cli/command/volume/remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/remove_test.go rename to cli/vendor/github.com/moby/moby/cli/command/volume/remove_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.json-template.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-with-format.simple-template.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.multiple-volume-with-labels.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-inspect-without-format.single-volume.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-config-format.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-config-format.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-config-format.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-config-format.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-format.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-format.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-format.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-with-format.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-without-format.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-without-format.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-without-format.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-list-without-format.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-no.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-no.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-no.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-no.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-yes.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-yes.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-yes.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune-yes.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.deletedVolumes.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.deletedVolumes.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.deletedVolumes.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.deletedVolumes.golden diff --git a/fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.empty.golden b/cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.empty.golden similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.empty.golden rename to cli/vendor/github.com/moby/moby/cli/command/volume/testdata/volume-prune.empty.golden diff --git a/fn/vendor/github.com/moby/moby/cli/compose/convert/compose.go b/cli/vendor/github.com/moby/moby/cli/compose/convert/compose.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/convert/compose.go rename to cli/vendor/github.com/moby/moby/cli/compose/convert/compose.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/convert/compose_test.go b/cli/vendor/github.com/moby/moby/cli/compose/convert/compose_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/convert/compose_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/convert/compose_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/convert/service.go b/cli/vendor/github.com/moby/moby/cli/compose/convert/service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/convert/service.go rename to cli/vendor/github.com/moby/moby/cli/compose/convert/service.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/convert/service_test.go b/cli/vendor/github.com/moby/moby/cli/compose/convert/service_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/convert/service_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/convert/service_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/convert/volume.go b/cli/vendor/github.com/moby/moby/cli/compose/convert/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/convert/volume.go rename to cli/vendor/github.com/moby/moby/cli/compose/convert/volume.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/convert/volume_test.go b/cli/vendor/github.com/moby/moby/cli/compose/convert/volume_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/convert/volume_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/convert/volume_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation.go b/cli/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation.go rename to cli/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation_test.go b/cli/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/interpolation/interpolation_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/example1.env b/cli/vendor/github.com/moby/moby/cli/compose/loader/example1.env similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/example1.env rename to cli/vendor/github.com/moby/moby/cli/compose/loader/example1.env diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/example2.env b/cli/vendor/github.com/moby/moby/cli/compose/loader/example2.env similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/example2.env rename to cli/vendor/github.com/moby/moby/cli/compose/loader/example2.env diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/full-example.yml b/cli/vendor/github.com/moby/moby/cli/compose/loader/full-example.yml similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/full-example.yml rename to cli/vendor/github.com/moby/moby/cli/compose/loader/full-example.yml diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/loader.go b/cli/vendor/github.com/moby/moby/cli/compose/loader/loader.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/loader.go rename to cli/vendor/github.com/moby/moby/cli/compose/loader/loader.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/loader_test.go b/cli/vendor/github.com/moby/moby/cli/compose/loader/loader_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/loader_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/loader/loader_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/volume.go b/cli/vendor/github.com/moby/moby/cli/compose/loader/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/volume.go rename to cli/vendor/github.com/moby/moby/cli/compose/loader/volume.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/loader/volume_test.go b/cli/vendor/github.com/moby/moby/cli/compose/loader/volume_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/loader/volume_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/loader/volume_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/schema/bindata.go b/cli/vendor/github.com/moby/moby/cli/compose/schema/bindata.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/schema/bindata.go rename to cli/vendor/github.com/moby/moby/cli/compose/schema/bindata.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/schema/schema.go b/cli/vendor/github.com/moby/moby/cli/compose/schema/schema.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/schema/schema.go rename to cli/vendor/github.com/moby/moby/cli/compose/schema/schema.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/schema/schema_test.go b/cli/vendor/github.com/moby/moby/cli/compose/schema/schema_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/schema/schema_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/schema/schema_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/template/template.go b/cli/vendor/github.com/moby/moby/cli/compose/template/template.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/template/template.go rename to cli/vendor/github.com/moby/moby/cli/compose/template/template.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/template/template_test.go b/cli/vendor/github.com/moby/moby/cli/compose/template/template_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/template/template_test.go rename to cli/vendor/github.com/moby/moby/cli/compose/template/template_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/compose/types/types.go b/cli/vendor/github.com/moby/moby/cli/compose/types/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/compose/types/types.go rename to cli/vendor/github.com/moby/moby/cli/compose/types/types.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/config.go b/cli/vendor/github.com/moby/moby/cli/config/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/config.go rename to cli/vendor/github.com/moby/moby/cli/config/config.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/config_test.go b/cli/vendor/github.com/moby/moby/cli/config/config_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/config_test.go rename to cli/vendor/github.com/moby/moby/cli/config/config_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/configfile/file.go b/cli/vendor/github.com/moby/moby/cli/config/configfile/file.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/configfile/file.go rename to cli/vendor/github.com/moby/moby/cli/config/configfile/file.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/configfile/file_test.go b/cli/vendor/github.com/moby/moby/cli/config/configfile/file_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/configfile/file_test.go rename to cli/vendor/github.com/moby/moby/cli/config/configfile/file_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/credentials.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/credentials.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/credentials.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/credentials.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/default_store.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/default_store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/default_store.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/default_store.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_darwin.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_darwin.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_darwin.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_linux.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_linux.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_linux.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_unsupported.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_unsupported.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_windows.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/default_store_windows.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/default_store_windows.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/file_store.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/file_store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/file_store.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/file_store.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/file_store_test.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/file_store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/file_store_test.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/file_store_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/native_store.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/native_store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/native_store.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/native_store.go diff --git a/fn/vendor/github.com/moby/moby/cli/config/credentials/native_store_test.go b/cli/vendor/github.com/moby/moby/cli/config/credentials/native_store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/config/credentials/native_store_test.go rename to cli/vendor/github.com/moby/moby/cli/config/credentials/native_store_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/debug/debug.go b/cli/vendor/github.com/moby/moby/cli/debug/debug.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/debug/debug.go rename to cli/vendor/github.com/moby/moby/cli/debug/debug.go diff --git a/fn/vendor/github.com/moby/moby/cli/debug/debug_test.go b/cli/vendor/github.com/moby/moby/cli/debug/debug_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/debug/debug_test.go rename to cli/vendor/github.com/moby/moby/cli/debug/debug_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/error.go b/cli/vendor/github.com/moby/moby/cli/error.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/error.go rename to cli/vendor/github.com/moby/moby/cli/error.go diff --git a/fn/vendor/github.com/moby/moby/cli/flags/client.go b/cli/vendor/github.com/moby/moby/cli/flags/client.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/flags/client.go rename to cli/vendor/github.com/moby/moby/cli/flags/client.go diff --git a/fn/vendor/github.com/moby/moby/cli/flags/common.go b/cli/vendor/github.com/moby/moby/cli/flags/common.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/flags/common.go rename to cli/vendor/github.com/moby/moby/cli/flags/common.go diff --git a/fn/vendor/github.com/moby/moby/cli/flags/common_test.go b/cli/vendor/github.com/moby/moby/cli/flags/common_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/flags/common_test.go rename to cli/vendor/github.com/moby/moby/cli/flags/common_test.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/doc.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/doc.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/doc.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/doc.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/node.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/node.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/node.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/node.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/secret.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/secret.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/secret.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/secret.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/service.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/service.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/service.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/swarm.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/swarm.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/swarm.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/swarm.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/task.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/task.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/task.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/task.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/builders/volume.go b/cli/vendor/github.com/moby/moby/cli/internal/test/builders/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/builders/volume.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/builders/volume.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/cli.go b/cli/vendor/github.com/moby/moby/cli/internal/test/cli.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/cli.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/cli.go diff --git a/fn/vendor/github.com/moby/moby/cli/internal/test/doc.go b/cli/vendor/github.com/moby/moby/cli/internal/test/doc.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/internal/test/doc.go rename to cli/vendor/github.com/moby/moby/cli/internal/test/doc.go diff --git a/fn/vendor/github.com/moby/moby/cli/required.go b/cli/vendor/github.com/moby/moby/cli/required.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/required.go rename to cli/vendor/github.com/moby/moby/cli/required.go diff --git a/fn/vendor/github.com/moby/moby/cli/trust/trust.go b/cli/vendor/github.com/moby/moby/cli/trust/trust.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cli/trust/trust.go rename to cli/vendor/github.com/moby/moby/cli/trust/trust.go diff --git a/fn/vendor/github.com/moby/moby/client/README.md b/cli/vendor/github.com/moby/moby/client/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/client/README.md rename to cli/vendor/github.com/moby/moby/client/README.md diff --git a/fn/vendor/github.com/moby/moby/client/checkpoint_create.go b/cli/vendor/github.com/moby/moby/client/checkpoint_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/checkpoint_create.go rename to cli/vendor/github.com/moby/moby/client/checkpoint_create.go diff --git a/fn/vendor/github.com/moby/moby/client/checkpoint_create_test.go b/cli/vendor/github.com/moby/moby/client/checkpoint_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/checkpoint_create_test.go rename to cli/vendor/github.com/moby/moby/client/checkpoint_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/checkpoint_delete.go b/cli/vendor/github.com/moby/moby/client/checkpoint_delete.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/checkpoint_delete.go rename to cli/vendor/github.com/moby/moby/client/checkpoint_delete.go diff --git a/fn/vendor/github.com/moby/moby/client/checkpoint_delete_test.go b/cli/vendor/github.com/moby/moby/client/checkpoint_delete_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/checkpoint_delete_test.go rename to cli/vendor/github.com/moby/moby/client/checkpoint_delete_test.go diff --git a/fn/vendor/github.com/moby/moby/client/checkpoint_list.go b/cli/vendor/github.com/moby/moby/client/checkpoint_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/checkpoint_list.go rename to cli/vendor/github.com/moby/moby/client/checkpoint_list.go diff --git a/fn/vendor/github.com/moby/moby/client/checkpoint_list_test.go b/cli/vendor/github.com/moby/moby/client/checkpoint_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/checkpoint_list_test.go rename to cli/vendor/github.com/moby/moby/client/checkpoint_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/client.go b/cli/vendor/github.com/moby/moby/client/client.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/client.go rename to cli/vendor/github.com/moby/moby/client/client.go diff --git a/fn/vendor/github.com/moby/moby/client/client_mock_test.go b/cli/vendor/github.com/moby/moby/client/client_mock_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/client_mock_test.go rename to cli/vendor/github.com/moby/moby/client/client_mock_test.go diff --git a/fn/vendor/github.com/moby/moby/client/client_test.go b/cli/vendor/github.com/moby/moby/client/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/client_test.go rename to cli/vendor/github.com/moby/moby/client/client_test.go diff --git a/fn/vendor/github.com/moby/moby/client/client_unix.go b/cli/vendor/github.com/moby/moby/client/client_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/client_unix.go rename to cli/vendor/github.com/moby/moby/client/client_unix.go diff --git a/fn/vendor/github.com/moby/moby/client/client_windows.go b/cli/vendor/github.com/moby/moby/client/client_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/client_windows.go rename to cli/vendor/github.com/moby/moby/client/client_windows.go diff --git a/fn/vendor/github.com/moby/moby/client/container_attach.go b/cli/vendor/github.com/moby/moby/client/container_attach.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_attach.go rename to cli/vendor/github.com/moby/moby/client/container_attach.go diff --git a/fn/vendor/github.com/moby/moby/client/container_commit.go b/cli/vendor/github.com/moby/moby/client/container_commit.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_commit.go rename to cli/vendor/github.com/moby/moby/client/container_commit.go diff --git a/fn/vendor/github.com/moby/moby/client/container_commit_test.go b/cli/vendor/github.com/moby/moby/client/container_commit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_commit_test.go rename to cli/vendor/github.com/moby/moby/client/container_commit_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_copy.go b/cli/vendor/github.com/moby/moby/client/container_copy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_copy.go rename to cli/vendor/github.com/moby/moby/client/container_copy.go diff --git a/fn/vendor/github.com/moby/moby/client/container_copy_test.go b/cli/vendor/github.com/moby/moby/client/container_copy_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_copy_test.go rename to cli/vendor/github.com/moby/moby/client/container_copy_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_create.go b/cli/vendor/github.com/moby/moby/client/container_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_create.go rename to cli/vendor/github.com/moby/moby/client/container_create.go diff --git a/fn/vendor/github.com/moby/moby/client/container_create_test.go b/cli/vendor/github.com/moby/moby/client/container_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_create_test.go rename to cli/vendor/github.com/moby/moby/client/container_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_diff.go b/cli/vendor/github.com/moby/moby/client/container_diff.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_diff.go rename to cli/vendor/github.com/moby/moby/client/container_diff.go diff --git a/fn/vendor/github.com/moby/moby/client/container_diff_test.go b/cli/vendor/github.com/moby/moby/client/container_diff_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_diff_test.go rename to cli/vendor/github.com/moby/moby/client/container_diff_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_exec.go b/cli/vendor/github.com/moby/moby/client/container_exec.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_exec.go rename to cli/vendor/github.com/moby/moby/client/container_exec.go diff --git a/fn/vendor/github.com/moby/moby/client/container_exec_test.go b/cli/vendor/github.com/moby/moby/client/container_exec_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_exec_test.go rename to cli/vendor/github.com/moby/moby/client/container_exec_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_export.go b/cli/vendor/github.com/moby/moby/client/container_export.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_export.go rename to cli/vendor/github.com/moby/moby/client/container_export.go diff --git a/fn/vendor/github.com/moby/moby/client/container_export_test.go b/cli/vendor/github.com/moby/moby/client/container_export_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_export_test.go rename to cli/vendor/github.com/moby/moby/client/container_export_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_inspect.go b/cli/vendor/github.com/moby/moby/client/container_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_inspect.go rename to cli/vendor/github.com/moby/moby/client/container_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/container_inspect_test.go b/cli/vendor/github.com/moby/moby/client/container_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/container_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_kill.go b/cli/vendor/github.com/moby/moby/client/container_kill.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_kill.go rename to cli/vendor/github.com/moby/moby/client/container_kill.go diff --git a/fn/vendor/github.com/moby/moby/client/container_kill_test.go b/cli/vendor/github.com/moby/moby/client/container_kill_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_kill_test.go rename to cli/vendor/github.com/moby/moby/client/container_kill_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_list.go b/cli/vendor/github.com/moby/moby/client/container_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_list.go rename to cli/vendor/github.com/moby/moby/client/container_list.go diff --git a/fn/vendor/github.com/moby/moby/client/container_list_test.go b/cli/vendor/github.com/moby/moby/client/container_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_list_test.go rename to cli/vendor/github.com/moby/moby/client/container_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_logs.go b/cli/vendor/github.com/moby/moby/client/container_logs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_logs.go rename to cli/vendor/github.com/moby/moby/client/container_logs.go diff --git a/fn/vendor/github.com/moby/moby/client/container_logs_test.go b/cli/vendor/github.com/moby/moby/client/container_logs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_logs_test.go rename to cli/vendor/github.com/moby/moby/client/container_logs_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_pause.go b/cli/vendor/github.com/moby/moby/client/container_pause.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_pause.go rename to cli/vendor/github.com/moby/moby/client/container_pause.go diff --git a/fn/vendor/github.com/moby/moby/client/container_pause_test.go b/cli/vendor/github.com/moby/moby/client/container_pause_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_pause_test.go rename to cli/vendor/github.com/moby/moby/client/container_pause_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_prune.go b/cli/vendor/github.com/moby/moby/client/container_prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_prune.go rename to cli/vendor/github.com/moby/moby/client/container_prune.go diff --git a/fn/vendor/github.com/moby/moby/client/container_prune_test.go b/cli/vendor/github.com/moby/moby/client/container_prune_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_prune_test.go rename to cli/vendor/github.com/moby/moby/client/container_prune_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_remove.go b/cli/vendor/github.com/moby/moby/client/container_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_remove.go rename to cli/vendor/github.com/moby/moby/client/container_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/container_remove_test.go b/cli/vendor/github.com/moby/moby/client/container_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_remove_test.go rename to cli/vendor/github.com/moby/moby/client/container_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_rename.go b/cli/vendor/github.com/moby/moby/client/container_rename.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_rename.go rename to cli/vendor/github.com/moby/moby/client/container_rename.go diff --git a/fn/vendor/github.com/moby/moby/client/container_rename_test.go b/cli/vendor/github.com/moby/moby/client/container_rename_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_rename_test.go rename to cli/vendor/github.com/moby/moby/client/container_rename_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_resize.go b/cli/vendor/github.com/moby/moby/client/container_resize.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_resize.go rename to cli/vendor/github.com/moby/moby/client/container_resize.go diff --git a/fn/vendor/github.com/moby/moby/client/container_resize_test.go b/cli/vendor/github.com/moby/moby/client/container_resize_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_resize_test.go rename to cli/vendor/github.com/moby/moby/client/container_resize_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_restart.go b/cli/vendor/github.com/moby/moby/client/container_restart.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_restart.go rename to cli/vendor/github.com/moby/moby/client/container_restart.go diff --git a/fn/vendor/github.com/moby/moby/client/container_restart_test.go b/cli/vendor/github.com/moby/moby/client/container_restart_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_restart_test.go rename to cli/vendor/github.com/moby/moby/client/container_restart_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_start.go b/cli/vendor/github.com/moby/moby/client/container_start.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_start.go rename to cli/vendor/github.com/moby/moby/client/container_start.go diff --git a/fn/vendor/github.com/moby/moby/client/container_start_test.go b/cli/vendor/github.com/moby/moby/client/container_start_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_start_test.go rename to cli/vendor/github.com/moby/moby/client/container_start_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_stats.go b/cli/vendor/github.com/moby/moby/client/container_stats.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_stats.go rename to cli/vendor/github.com/moby/moby/client/container_stats.go diff --git a/fn/vendor/github.com/moby/moby/client/container_stats_test.go b/cli/vendor/github.com/moby/moby/client/container_stats_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_stats_test.go rename to cli/vendor/github.com/moby/moby/client/container_stats_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_stop.go b/cli/vendor/github.com/moby/moby/client/container_stop.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_stop.go rename to cli/vendor/github.com/moby/moby/client/container_stop.go diff --git a/fn/vendor/github.com/moby/moby/client/container_stop_test.go b/cli/vendor/github.com/moby/moby/client/container_stop_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_stop_test.go rename to cli/vendor/github.com/moby/moby/client/container_stop_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_top.go b/cli/vendor/github.com/moby/moby/client/container_top.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_top.go rename to cli/vendor/github.com/moby/moby/client/container_top.go diff --git a/fn/vendor/github.com/moby/moby/client/container_top_test.go b/cli/vendor/github.com/moby/moby/client/container_top_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_top_test.go rename to cli/vendor/github.com/moby/moby/client/container_top_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_unpause.go b/cli/vendor/github.com/moby/moby/client/container_unpause.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_unpause.go rename to cli/vendor/github.com/moby/moby/client/container_unpause.go diff --git a/fn/vendor/github.com/moby/moby/client/container_unpause_test.go b/cli/vendor/github.com/moby/moby/client/container_unpause_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_unpause_test.go rename to cli/vendor/github.com/moby/moby/client/container_unpause_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_update.go b/cli/vendor/github.com/moby/moby/client/container_update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_update.go rename to cli/vendor/github.com/moby/moby/client/container_update.go diff --git a/fn/vendor/github.com/moby/moby/client/container_update_test.go b/cli/vendor/github.com/moby/moby/client/container_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_update_test.go rename to cli/vendor/github.com/moby/moby/client/container_update_test.go diff --git a/fn/vendor/github.com/moby/moby/client/container_wait.go b/cli/vendor/github.com/moby/moby/client/container_wait.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_wait.go rename to cli/vendor/github.com/moby/moby/client/container_wait.go diff --git a/fn/vendor/github.com/moby/moby/client/container_wait_test.go b/cli/vendor/github.com/moby/moby/client/container_wait_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/container_wait_test.go rename to cli/vendor/github.com/moby/moby/client/container_wait_test.go diff --git a/fn/vendor/github.com/moby/moby/client/disk_usage.go b/cli/vendor/github.com/moby/moby/client/disk_usage.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/disk_usage.go rename to cli/vendor/github.com/moby/moby/client/disk_usage.go diff --git a/fn/vendor/github.com/moby/moby/client/errors.go b/cli/vendor/github.com/moby/moby/client/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/errors.go rename to cli/vendor/github.com/moby/moby/client/errors.go diff --git a/fn/vendor/github.com/moby/moby/client/events.go b/cli/vendor/github.com/moby/moby/client/events.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/events.go rename to cli/vendor/github.com/moby/moby/client/events.go diff --git a/fn/vendor/github.com/moby/moby/client/events_test.go b/cli/vendor/github.com/moby/moby/client/events_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/events_test.go rename to cli/vendor/github.com/moby/moby/client/events_test.go diff --git a/fn/vendor/github.com/moby/moby/client/hijack.go b/cli/vendor/github.com/moby/moby/client/hijack.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/hijack.go rename to cli/vendor/github.com/moby/moby/client/hijack.go diff --git a/fn/vendor/github.com/moby/moby/client/image_build.go b/cli/vendor/github.com/moby/moby/client/image_build.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_build.go rename to cli/vendor/github.com/moby/moby/client/image_build.go diff --git a/fn/vendor/github.com/moby/moby/client/image_build_test.go b/cli/vendor/github.com/moby/moby/client/image_build_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_build_test.go rename to cli/vendor/github.com/moby/moby/client/image_build_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_create.go b/cli/vendor/github.com/moby/moby/client/image_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_create.go rename to cli/vendor/github.com/moby/moby/client/image_create.go diff --git a/fn/vendor/github.com/moby/moby/client/image_create_test.go b/cli/vendor/github.com/moby/moby/client/image_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_create_test.go rename to cli/vendor/github.com/moby/moby/client/image_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_history.go b/cli/vendor/github.com/moby/moby/client/image_history.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_history.go rename to cli/vendor/github.com/moby/moby/client/image_history.go diff --git a/fn/vendor/github.com/moby/moby/client/image_history_test.go b/cli/vendor/github.com/moby/moby/client/image_history_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_history_test.go rename to cli/vendor/github.com/moby/moby/client/image_history_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_import.go b/cli/vendor/github.com/moby/moby/client/image_import.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_import.go rename to cli/vendor/github.com/moby/moby/client/image_import.go diff --git a/fn/vendor/github.com/moby/moby/client/image_import_test.go b/cli/vendor/github.com/moby/moby/client/image_import_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_import_test.go rename to cli/vendor/github.com/moby/moby/client/image_import_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_inspect.go b/cli/vendor/github.com/moby/moby/client/image_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_inspect.go rename to cli/vendor/github.com/moby/moby/client/image_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/image_inspect_test.go b/cli/vendor/github.com/moby/moby/client/image_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/image_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_list.go b/cli/vendor/github.com/moby/moby/client/image_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_list.go rename to cli/vendor/github.com/moby/moby/client/image_list.go diff --git a/fn/vendor/github.com/moby/moby/client/image_list_test.go b/cli/vendor/github.com/moby/moby/client/image_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_list_test.go rename to cli/vendor/github.com/moby/moby/client/image_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_load.go b/cli/vendor/github.com/moby/moby/client/image_load.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_load.go rename to cli/vendor/github.com/moby/moby/client/image_load.go diff --git a/fn/vendor/github.com/moby/moby/client/image_load_test.go b/cli/vendor/github.com/moby/moby/client/image_load_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_load_test.go rename to cli/vendor/github.com/moby/moby/client/image_load_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_prune.go b/cli/vendor/github.com/moby/moby/client/image_prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_prune.go rename to cli/vendor/github.com/moby/moby/client/image_prune.go diff --git a/fn/vendor/github.com/moby/moby/client/image_prune_test.go b/cli/vendor/github.com/moby/moby/client/image_prune_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_prune_test.go rename to cli/vendor/github.com/moby/moby/client/image_prune_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_pull.go b/cli/vendor/github.com/moby/moby/client/image_pull.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_pull.go rename to cli/vendor/github.com/moby/moby/client/image_pull.go diff --git a/fn/vendor/github.com/moby/moby/client/image_pull_test.go b/cli/vendor/github.com/moby/moby/client/image_pull_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_pull_test.go rename to cli/vendor/github.com/moby/moby/client/image_pull_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_push.go b/cli/vendor/github.com/moby/moby/client/image_push.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_push.go rename to cli/vendor/github.com/moby/moby/client/image_push.go diff --git a/fn/vendor/github.com/moby/moby/client/image_push_test.go b/cli/vendor/github.com/moby/moby/client/image_push_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_push_test.go rename to cli/vendor/github.com/moby/moby/client/image_push_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_remove.go b/cli/vendor/github.com/moby/moby/client/image_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_remove.go rename to cli/vendor/github.com/moby/moby/client/image_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/image_remove_test.go b/cli/vendor/github.com/moby/moby/client/image_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_remove_test.go rename to cli/vendor/github.com/moby/moby/client/image_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_save.go b/cli/vendor/github.com/moby/moby/client/image_save.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_save.go rename to cli/vendor/github.com/moby/moby/client/image_save.go diff --git a/fn/vendor/github.com/moby/moby/client/image_save_test.go b/cli/vendor/github.com/moby/moby/client/image_save_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_save_test.go rename to cli/vendor/github.com/moby/moby/client/image_save_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_search.go b/cli/vendor/github.com/moby/moby/client/image_search.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_search.go rename to cli/vendor/github.com/moby/moby/client/image_search.go diff --git a/fn/vendor/github.com/moby/moby/client/image_search_test.go b/cli/vendor/github.com/moby/moby/client/image_search_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_search_test.go rename to cli/vendor/github.com/moby/moby/client/image_search_test.go diff --git a/fn/vendor/github.com/moby/moby/client/image_tag.go b/cli/vendor/github.com/moby/moby/client/image_tag.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_tag.go rename to cli/vendor/github.com/moby/moby/client/image_tag.go diff --git a/fn/vendor/github.com/moby/moby/client/image_tag_test.go b/cli/vendor/github.com/moby/moby/client/image_tag_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/image_tag_test.go rename to cli/vendor/github.com/moby/moby/client/image_tag_test.go diff --git a/fn/vendor/github.com/moby/moby/client/info.go b/cli/vendor/github.com/moby/moby/client/info.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/info.go rename to cli/vendor/github.com/moby/moby/client/info.go diff --git a/fn/vendor/github.com/moby/moby/client/info_test.go b/cli/vendor/github.com/moby/moby/client/info_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/info_test.go rename to cli/vendor/github.com/moby/moby/client/info_test.go diff --git a/fn/vendor/github.com/moby/moby/client/interface.go b/cli/vendor/github.com/moby/moby/client/interface.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/interface.go rename to cli/vendor/github.com/moby/moby/client/interface.go diff --git a/fn/vendor/github.com/moby/moby/client/interface_experimental.go b/cli/vendor/github.com/moby/moby/client/interface_experimental.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/interface_experimental.go rename to cli/vendor/github.com/moby/moby/client/interface_experimental.go diff --git a/fn/vendor/github.com/moby/moby/client/interface_stable.go b/cli/vendor/github.com/moby/moby/client/interface_stable.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/interface_stable.go rename to cli/vendor/github.com/moby/moby/client/interface_stable.go diff --git a/fn/vendor/github.com/moby/moby/client/login.go b/cli/vendor/github.com/moby/moby/client/login.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/login.go rename to cli/vendor/github.com/moby/moby/client/login.go diff --git a/fn/vendor/github.com/moby/moby/client/network_connect.go b/cli/vendor/github.com/moby/moby/client/network_connect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_connect.go rename to cli/vendor/github.com/moby/moby/client/network_connect.go diff --git a/fn/vendor/github.com/moby/moby/client/network_connect_test.go b/cli/vendor/github.com/moby/moby/client/network_connect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_connect_test.go rename to cli/vendor/github.com/moby/moby/client/network_connect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/network_create.go b/cli/vendor/github.com/moby/moby/client/network_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_create.go rename to cli/vendor/github.com/moby/moby/client/network_create.go diff --git a/fn/vendor/github.com/moby/moby/client/network_create_test.go b/cli/vendor/github.com/moby/moby/client/network_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_create_test.go rename to cli/vendor/github.com/moby/moby/client/network_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/network_disconnect.go b/cli/vendor/github.com/moby/moby/client/network_disconnect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_disconnect.go rename to cli/vendor/github.com/moby/moby/client/network_disconnect.go diff --git a/fn/vendor/github.com/moby/moby/client/network_disconnect_test.go b/cli/vendor/github.com/moby/moby/client/network_disconnect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_disconnect_test.go rename to cli/vendor/github.com/moby/moby/client/network_disconnect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/network_inspect.go b/cli/vendor/github.com/moby/moby/client/network_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_inspect.go rename to cli/vendor/github.com/moby/moby/client/network_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/network_inspect_test.go b/cli/vendor/github.com/moby/moby/client/network_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/network_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/network_list.go b/cli/vendor/github.com/moby/moby/client/network_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_list.go rename to cli/vendor/github.com/moby/moby/client/network_list.go diff --git a/fn/vendor/github.com/moby/moby/client/network_list_test.go b/cli/vendor/github.com/moby/moby/client/network_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_list_test.go rename to cli/vendor/github.com/moby/moby/client/network_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/network_prune.go b/cli/vendor/github.com/moby/moby/client/network_prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_prune.go rename to cli/vendor/github.com/moby/moby/client/network_prune.go diff --git a/fn/vendor/github.com/moby/moby/client/network_prune_test.go b/cli/vendor/github.com/moby/moby/client/network_prune_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_prune_test.go rename to cli/vendor/github.com/moby/moby/client/network_prune_test.go diff --git a/fn/vendor/github.com/moby/moby/client/network_remove.go b/cli/vendor/github.com/moby/moby/client/network_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_remove.go rename to cli/vendor/github.com/moby/moby/client/network_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/network_remove_test.go b/cli/vendor/github.com/moby/moby/client/network_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/network_remove_test.go rename to cli/vendor/github.com/moby/moby/client/network_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/node_inspect.go b/cli/vendor/github.com/moby/moby/client/node_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_inspect.go rename to cli/vendor/github.com/moby/moby/client/node_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/node_inspect_test.go b/cli/vendor/github.com/moby/moby/client/node_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/node_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/node_list.go b/cli/vendor/github.com/moby/moby/client/node_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_list.go rename to cli/vendor/github.com/moby/moby/client/node_list.go diff --git a/fn/vendor/github.com/moby/moby/client/node_list_test.go b/cli/vendor/github.com/moby/moby/client/node_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_list_test.go rename to cli/vendor/github.com/moby/moby/client/node_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/node_remove.go b/cli/vendor/github.com/moby/moby/client/node_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_remove.go rename to cli/vendor/github.com/moby/moby/client/node_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/node_remove_test.go b/cli/vendor/github.com/moby/moby/client/node_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_remove_test.go rename to cli/vendor/github.com/moby/moby/client/node_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/node_update.go b/cli/vendor/github.com/moby/moby/client/node_update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_update.go rename to cli/vendor/github.com/moby/moby/client/node_update.go diff --git a/fn/vendor/github.com/moby/moby/client/node_update_test.go b/cli/vendor/github.com/moby/moby/client/node_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/node_update_test.go rename to cli/vendor/github.com/moby/moby/client/node_update_test.go diff --git a/fn/vendor/github.com/moby/moby/client/ping.go b/cli/vendor/github.com/moby/moby/client/ping.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/ping.go rename to cli/vendor/github.com/moby/moby/client/ping.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_create.go b/cli/vendor/github.com/moby/moby/client/plugin_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_create.go rename to cli/vendor/github.com/moby/moby/client/plugin_create.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_disable.go b/cli/vendor/github.com/moby/moby/client/plugin_disable.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_disable.go rename to cli/vendor/github.com/moby/moby/client/plugin_disable.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_disable_test.go b/cli/vendor/github.com/moby/moby/client/plugin_disable_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_disable_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_disable_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_enable.go b/cli/vendor/github.com/moby/moby/client/plugin_enable.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_enable.go rename to cli/vendor/github.com/moby/moby/client/plugin_enable.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_enable_test.go b/cli/vendor/github.com/moby/moby/client/plugin_enable_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_enable_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_enable_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_inspect.go b/cli/vendor/github.com/moby/moby/client/plugin_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_inspect.go rename to cli/vendor/github.com/moby/moby/client/plugin_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_inspect_test.go b/cli/vendor/github.com/moby/moby/client/plugin_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_install.go b/cli/vendor/github.com/moby/moby/client/plugin_install.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_install.go rename to cli/vendor/github.com/moby/moby/client/plugin_install.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_list.go b/cli/vendor/github.com/moby/moby/client/plugin_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_list.go rename to cli/vendor/github.com/moby/moby/client/plugin_list.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_list_test.go b/cli/vendor/github.com/moby/moby/client/plugin_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_list_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_push.go b/cli/vendor/github.com/moby/moby/client/plugin_push.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_push.go rename to cli/vendor/github.com/moby/moby/client/plugin_push.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_push_test.go b/cli/vendor/github.com/moby/moby/client/plugin_push_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_push_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_push_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_remove.go b/cli/vendor/github.com/moby/moby/client/plugin_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_remove.go rename to cli/vendor/github.com/moby/moby/client/plugin_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_remove_test.go b/cli/vendor/github.com/moby/moby/client/plugin_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_remove_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_set.go b/cli/vendor/github.com/moby/moby/client/plugin_set.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_set.go rename to cli/vendor/github.com/moby/moby/client/plugin_set.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_set_test.go b/cli/vendor/github.com/moby/moby/client/plugin_set_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_set_test.go rename to cli/vendor/github.com/moby/moby/client/plugin_set_test.go diff --git a/fn/vendor/github.com/moby/moby/client/plugin_upgrade.go b/cli/vendor/github.com/moby/moby/client/plugin_upgrade.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/plugin_upgrade.go rename to cli/vendor/github.com/moby/moby/client/plugin_upgrade.go diff --git a/fn/vendor/github.com/moby/moby/client/request.go b/cli/vendor/github.com/moby/moby/client/request.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/request.go rename to cli/vendor/github.com/moby/moby/client/request.go diff --git a/fn/vendor/github.com/moby/moby/client/request_test.go b/cli/vendor/github.com/moby/moby/client/request_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/request_test.go rename to cli/vendor/github.com/moby/moby/client/request_test.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_create.go b/cli/vendor/github.com/moby/moby/client/secret_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_create.go rename to cli/vendor/github.com/moby/moby/client/secret_create.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_create_test.go b/cli/vendor/github.com/moby/moby/client/secret_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_create_test.go rename to cli/vendor/github.com/moby/moby/client/secret_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_inspect.go b/cli/vendor/github.com/moby/moby/client/secret_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_inspect.go rename to cli/vendor/github.com/moby/moby/client/secret_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_inspect_test.go b/cli/vendor/github.com/moby/moby/client/secret_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/secret_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_list.go b/cli/vendor/github.com/moby/moby/client/secret_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_list.go rename to cli/vendor/github.com/moby/moby/client/secret_list.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_list_test.go b/cli/vendor/github.com/moby/moby/client/secret_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_list_test.go rename to cli/vendor/github.com/moby/moby/client/secret_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_remove.go b/cli/vendor/github.com/moby/moby/client/secret_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_remove.go rename to cli/vendor/github.com/moby/moby/client/secret_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_remove_test.go b/cli/vendor/github.com/moby/moby/client/secret_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_remove_test.go rename to cli/vendor/github.com/moby/moby/client/secret_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_update.go b/cli/vendor/github.com/moby/moby/client/secret_update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_update.go rename to cli/vendor/github.com/moby/moby/client/secret_update.go diff --git a/fn/vendor/github.com/moby/moby/client/secret_update_test.go b/cli/vendor/github.com/moby/moby/client/secret_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/secret_update_test.go rename to cli/vendor/github.com/moby/moby/client/secret_update_test.go diff --git a/fn/vendor/github.com/moby/moby/client/service_create.go b/cli/vendor/github.com/moby/moby/client/service_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_create.go rename to cli/vendor/github.com/moby/moby/client/service_create.go diff --git a/fn/vendor/github.com/moby/moby/client/service_create_test.go b/cli/vendor/github.com/moby/moby/client/service_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_create_test.go rename to cli/vendor/github.com/moby/moby/client/service_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/service_inspect.go b/cli/vendor/github.com/moby/moby/client/service_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_inspect.go rename to cli/vendor/github.com/moby/moby/client/service_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/service_inspect_test.go b/cli/vendor/github.com/moby/moby/client/service_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/service_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/service_list.go b/cli/vendor/github.com/moby/moby/client/service_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_list.go rename to cli/vendor/github.com/moby/moby/client/service_list.go diff --git a/fn/vendor/github.com/moby/moby/client/service_list_test.go b/cli/vendor/github.com/moby/moby/client/service_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_list_test.go rename to cli/vendor/github.com/moby/moby/client/service_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/service_logs.go b/cli/vendor/github.com/moby/moby/client/service_logs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_logs.go rename to cli/vendor/github.com/moby/moby/client/service_logs.go diff --git a/fn/vendor/github.com/moby/moby/client/service_logs_test.go b/cli/vendor/github.com/moby/moby/client/service_logs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_logs_test.go rename to cli/vendor/github.com/moby/moby/client/service_logs_test.go diff --git a/fn/vendor/github.com/moby/moby/client/service_remove.go b/cli/vendor/github.com/moby/moby/client/service_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_remove.go rename to cli/vendor/github.com/moby/moby/client/service_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/service_remove_test.go b/cli/vendor/github.com/moby/moby/client/service_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_remove_test.go rename to cli/vendor/github.com/moby/moby/client/service_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/client/service_update.go b/cli/vendor/github.com/moby/moby/client/service_update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_update.go rename to cli/vendor/github.com/moby/moby/client/service_update.go diff --git a/fn/vendor/github.com/moby/moby/client/service_update_test.go b/cli/vendor/github.com/moby/moby/client/service_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/service_update_test.go rename to cli/vendor/github.com/moby/moby/client/service_update_test.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_get_unlock_key.go b/cli/vendor/github.com/moby/moby/client/swarm_get_unlock_key.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_get_unlock_key.go rename to cli/vendor/github.com/moby/moby/client/swarm_get_unlock_key.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_init.go b/cli/vendor/github.com/moby/moby/client/swarm_init.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_init.go rename to cli/vendor/github.com/moby/moby/client/swarm_init.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_init_test.go b/cli/vendor/github.com/moby/moby/client/swarm_init_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_init_test.go rename to cli/vendor/github.com/moby/moby/client/swarm_init_test.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_inspect.go b/cli/vendor/github.com/moby/moby/client/swarm_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_inspect.go rename to cli/vendor/github.com/moby/moby/client/swarm_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_inspect_test.go b/cli/vendor/github.com/moby/moby/client/swarm_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/swarm_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_join.go b/cli/vendor/github.com/moby/moby/client/swarm_join.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_join.go rename to cli/vendor/github.com/moby/moby/client/swarm_join.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_join_test.go b/cli/vendor/github.com/moby/moby/client/swarm_join_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_join_test.go rename to cli/vendor/github.com/moby/moby/client/swarm_join_test.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_leave.go b/cli/vendor/github.com/moby/moby/client/swarm_leave.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_leave.go rename to cli/vendor/github.com/moby/moby/client/swarm_leave.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_leave_test.go b/cli/vendor/github.com/moby/moby/client/swarm_leave_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_leave_test.go rename to cli/vendor/github.com/moby/moby/client/swarm_leave_test.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_unlock.go b/cli/vendor/github.com/moby/moby/client/swarm_unlock.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_unlock.go rename to cli/vendor/github.com/moby/moby/client/swarm_unlock.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_update.go b/cli/vendor/github.com/moby/moby/client/swarm_update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_update.go rename to cli/vendor/github.com/moby/moby/client/swarm_update.go diff --git a/fn/vendor/github.com/moby/moby/client/swarm_update_test.go b/cli/vendor/github.com/moby/moby/client/swarm_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/swarm_update_test.go rename to cli/vendor/github.com/moby/moby/client/swarm_update_test.go diff --git a/fn/vendor/github.com/moby/moby/client/task_inspect.go b/cli/vendor/github.com/moby/moby/client/task_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/task_inspect.go rename to cli/vendor/github.com/moby/moby/client/task_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/task_inspect_test.go b/cli/vendor/github.com/moby/moby/client/task_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/task_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/task_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/task_list.go b/cli/vendor/github.com/moby/moby/client/task_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/task_list.go rename to cli/vendor/github.com/moby/moby/client/task_list.go diff --git a/fn/vendor/github.com/moby/moby/client/task_list_test.go b/cli/vendor/github.com/moby/moby/client/task_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/task_list_test.go rename to cli/vendor/github.com/moby/moby/client/task_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/task_logs.go b/cli/vendor/github.com/moby/moby/client/task_logs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/task_logs.go rename to cli/vendor/github.com/moby/moby/client/task_logs.go diff --git a/fn/vendor/github.com/moby/moby/client/transport.go b/cli/vendor/github.com/moby/moby/client/transport.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/transport.go rename to cli/vendor/github.com/moby/moby/client/transport.go diff --git a/fn/vendor/github.com/moby/moby/client/utils.go b/cli/vendor/github.com/moby/moby/client/utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/utils.go rename to cli/vendor/github.com/moby/moby/client/utils.go diff --git a/fn/vendor/github.com/moby/moby/client/version.go b/cli/vendor/github.com/moby/moby/client/version.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/version.go rename to cli/vendor/github.com/moby/moby/client/version.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_create.go b/cli/vendor/github.com/moby/moby/client/volume_create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_create.go rename to cli/vendor/github.com/moby/moby/client/volume_create.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_create_test.go b/cli/vendor/github.com/moby/moby/client/volume_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_create_test.go rename to cli/vendor/github.com/moby/moby/client/volume_create_test.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_inspect.go b/cli/vendor/github.com/moby/moby/client/volume_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_inspect.go rename to cli/vendor/github.com/moby/moby/client/volume_inspect.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_inspect_test.go b/cli/vendor/github.com/moby/moby/client/volume_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_inspect_test.go rename to cli/vendor/github.com/moby/moby/client/volume_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_list.go b/cli/vendor/github.com/moby/moby/client/volume_list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_list.go rename to cli/vendor/github.com/moby/moby/client/volume_list.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_list_test.go b/cli/vendor/github.com/moby/moby/client/volume_list_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_list_test.go rename to cli/vendor/github.com/moby/moby/client/volume_list_test.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_prune.go b/cli/vendor/github.com/moby/moby/client/volume_prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_prune.go rename to cli/vendor/github.com/moby/moby/client/volume_prune.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_remove.go b/cli/vendor/github.com/moby/moby/client/volume_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_remove.go rename to cli/vendor/github.com/moby/moby/client/volume_remove.go diff --git a/fn/vendor/github.com/moby/moby/client/volume_remove_test.go b/cli/vendor/github.com/moby/moby/client/volume_remove_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/client/volume_remove_test.go rename to cli/vendor/github.com/moby/moby/client/volume_remove_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/daemon_none.go b/cli/vendor/github.com/moby/moby/cmd/docker/daemon_none.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/daemon_none.go rename to cli/vendor/github.com/moby/moby/cmd/docker/daemon_none.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/daemon_none_test.go b/cli/vendor/github.com/moby/moby/cmd/docker/daemon_none_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/daemon_none_test.go rename to cli/vendor/github.com/moby/moby/cmd/docker/daemon_none_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/daemon_unit_test.go b/cli/vendor/github.com/moby/moby/cmd/docker/daemon_unit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/daemon_unit_test.go rename to cli/vendor/github.com/moby/moby/cmd/docker/daemon_unit_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/daemon_unix.go b/cli/vendor/github.com/moby/moby/cmd/docker/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/daemon_unix.go rename to cli/vendor/github.com/moby/moby/cmd/docker/daemon_unix.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/docker.go b/cli/vendor/github.com/moby/moby/cmd/docker/docker.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/docker.go rename to cli/vendor/github.com/moby/moby/cmd/docker/docker.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/docker_test.go b/cli/vendor/github.com/moby/moby/cmd/docker/docker_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/docker_test.go rename to cli/vendor/github.com/moby/moby/cmd/docker/docker_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/docker/docker_windows.go b/cli/vendor/github.com/moby/moby/cmd/docker/docker_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/docker/docker_windows.go rename to cli/vendor/github.com/moby/moby/cmd/docker/docker_windows.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/README.md b/cli/vendor/github.com/moby/moby/cmd/dockerd/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/README.md rename to cli/vendor/github.com/moby/moby/cmd/dockerd/README.md diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config_common_unix.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config_common_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config_common_unix.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config_common_unix.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config_experimental.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config_experimental.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config_experimental.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config_experimental.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config_solaris.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config_solaris.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config_solaris.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config_unix.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config_unix.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config_unix.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config_unix_test.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config_unix_test.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/config_windows.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/config_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/config_windows.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/config_windows.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_freebsd.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_freebsd.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_linux.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_linux.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_linux.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_solaris.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_solaris.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_solaris.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_test.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_test.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix_test.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix_test.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_windows.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/daemon_windows.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/daemon_windows.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/docker.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/docker.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/docker.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/docker.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/docker_windows.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/docker_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/docker_windows.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/docker_windows.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override_test.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override_test.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/hack/malformed_host_override_test.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/metrics.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/metrics.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/metrics.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/metrics.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/service_unsupported.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/service_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/service_unsupported.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/service_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/cmd/dockerd/service_windows.go b/cli/vendor/github.com/moby/moby/cmd/dockerd/service_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/cmd/dockerd/service_windows.go rename to cli/vendor/github.com/moby/moby/cmd/dockerd/service_windows.go diff --git a/fn/vendor/github.com/moby/moby/container/archive.go b/cli/vendor/github.com/moby/moby/container/archive.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/archive.go rename to cli/vendor/github.com/moby/moby/container/archive.go diff --git a/fn/vendor/github.com/moby/moby/container/container.go b/cli/vendor/github.com/moby/moby/container/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/container.go rename to cli/vendor/github.com/moby/moby/container/container.go diff --git a/fn/vendor/github.com/moby/moby/container/container_linux.go b/cli/vendor/github.com/moby/moby/container/container_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/container_linux.go rename to cli/vendor/github.com/moby/moby/container/container_linux.go diff --git a/fn/vendor/github.com/moby/moby/container/container_notlinux.go b/cli/vendor/github.com/moby/moby/container/container_notlinux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/container_notlinux.go rename to cli/vendor/github.com/moby/moby/container/container_notlinux.go diff --git a/fn/vendor/github.com/moby/moby/container/container_unit_test.go b/cli/vendor/github.com/moby/moby/container/container_unit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/container_unit_test.go rename to cli/vendor/github.com/moby/moby/container/container_unit_test.go diff --git a/fn/vendor/github.com/moby/moby/container/container_unix.go b/cli/vendor/github.com/moby/moby/container/container_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/container_unix.go rename to cli/vendor/github.com/moby/moby/container/container_unix.go diff --git a/fn/vendor/github.com/moby/moby/container/container_windows.go b/cli/vendor/github.com/moby/moby/container/container_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/container_windows.go rename to cli/vendor/github.com/moby/moby/container/container_windows.go diff --git a/fn/vendor/github.com/moby/moby/container/env.go b/cli/vendor/github.com/moby/moby/container/env.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/env.go rename to cli/vendor/github.com/moby/moby/container/env.go diff --git a/fn/vendor/github.com/moby/moby/container/env_test.go b/cli/vendor/github.com/moby/moby/container/env_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/env_test.go rename to cli/vendor/github.com/moby/moby/container/env_test.go diff --git a/fn/vendor/github.com/moby/moby/container/health.go b/cli/vendor/github.com/moby/moby/container/health.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/health.go rename to cli/vendor/github.com/moby/moby/container/health.go diff --git a/fn/vendor/github.com/moby/moby/container/history.go b/cli/vendor/github.com/moby/moby/container/history.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/history.go rename to cli/vendor/github.com/moby/moby/container/history.go diff --git a/fn/vendor/github.com/moby/moby/container/memory_store.go b/cli/vendor/github.com/moby/moby/container/memory_store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/memory_store.go rename to cli/vendor/github.com/moby/moby/container/memory_store.go diff --git a/fn/vendor/github.com/moby/moby/container/memory_store_test.go b/cli/vendor/github.com/moby/moby/container/memory_store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/memory_store_test.go rename to cli/vendor/github.com/moby/moby/container/memory_store_test.go diff --git a/fn/vendor/github.com/moby/moby/container/monitor.go b/cli/vendor/github.com/moby/moby/container/monitor.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/monitor.go rename to cli/vendor/github.com/moby/moby/container/monitor.go diff --git a/fn/vendor/github.com/moby/moby/container/mounts_unix.go b/cli/vendor/github.com/moby/moby/container/mounts_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/mounts_unix.go rename to cli/vendor/github.com/moby/moby/container/mounts_unix.go diff --git a/fn/vendor/github.com/moby/moby/container/mounts_windows.go b/cli/vendor/github.com/moby/moby/container/mounts_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/mounts_windows.go rename to cli/vendor/github.com/moby/moby/container/mounts_windows.go diff --git a/fn/vendor/github.com/moby/moby/container/state.go b/cli/vendor/github.com/moby/moby/container/state.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/state.go rename to cli/vendor/github.com/moby/moby/container/state.go diff --git a/fn/vendor/github.com/moby/moby/container/state_solaris.go b/cli/vendor/github.com/moby/moby/container/state_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/state_solaris.go rename to cli/vendor/github.com/moby/moby/container/state_solaris.go diff --git a/fn/vendor/github.com/moby/moby/container/state_test.go b/cli/vendor/github.com/moby/moby/container/state_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/state_test.go rename to cli/vendor/github.com/moby/moby/container/state_test.go diff --git a/fn/vendor/github.com/moby/moby/container/state_unix.go b/cli/vendor/github.com/moby/moby/container/state_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/state_unix.go rename to cli/vendor/github.com/moby/moby/container/state_unix.go diff --git a/fn/vendor/github.com/moby/moby/container/state_windows.go b/cli/vendor/github.com/moby/moby/container/state_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/state_windows.go rename to cli/vendor/github.com/moby/moby/container/state_windows.go diff --git a/fn/vendor/github.com/moby/moby/container/store.go b/cli/vendor/github.com/moby/moby/container/store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/store.go rename to cli/vendor/github.com/moby/moby/container/store.go diff --git a/fn/vendor/github.com/moby/moby/container/stream/attach.go b/cli/vendor/github.com/moby/moby/container/stream/attach.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/stream/attach.go rename to cli/vendor/github.com/moby/moby/container/stream/attach.go diff --git a/fn/vendor/github.com/moby/moby/container/stream/streams.go b/cli/vendor/github.com/moby/moby/container/stream/streams.go similarity index 100% rename from fn/vendor/github.com/moby/moby/container/stream/streams.go rename to cli/vendor/github.com/moby/moby/container/stream/streams.go diff --git a/fn/vendor/github.com/moby/moby/contrib/README.md b/cli/vendor/github.com/moby/moby/contrib/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/README.md rename to cli/vendor/github.com/moby/moby/contrib/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/REVIEWERS b/cli/vendor/github.com/moby/moby/contrib/REVIEWERS similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/REVIEWERS rename to cli/vendor/github.com/moby/moby/contrib/REVIEWERS diff --git a/fn/vendor/github.com/moby/moby/contrib/apparmor/main.go b/cli/vendor/github.com/moby/moby/contrib/apparmor/main.go similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/apparmor/main.go rename to cli/vendor/github.com/moby/moby/contrib/apparmor/main.go diff --git a/fn/vendor/github.com/moby/moby/contrib/apparmor/template.go b/cli/vendor/github.com/moby/moby/contrib/apparmor/template.go similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/apparmor/template.go rename to cli/vendor/github.com/moby/moby/contrib/apparmor/template.go diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-jessie/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-jessie/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-jessie/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-stretch/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-stretch/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-stretch/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/debian-stretch/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/aarch64/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/README.md b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/README.md rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-jessie/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-jessie/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-jessie/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-stretch/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-stretch/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-stretch/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-stretch/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-wheezy/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-wheezy/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-wheezy/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/debian-wheezy/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/amd64/ubuntu-zesty/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/debian-jessie/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/debian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/debian-jessie/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/debian-jessie/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/raspbian-jessie/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/armhf/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-trusty/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/ppc64le/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-xenial/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/deb/s390x/ubuntu-yakkety/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/README.md b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/README.md rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/amazonlinux-latest/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/centos-7/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/centos-7/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/centos-7/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/centos-7/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-24/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-24/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-24/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-24/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-25/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-25/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-25/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/fedora-25/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/opensuse-13.2/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-6/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/oraclelinux-7/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/photon-1.0/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/photon-1.0/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/photon-1.0/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/amd64/photon-1.0/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/centos-7/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/centos-7/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/centos-7/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/centos-7/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/armhf/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/build.sh b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/build.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/build.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/build.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/fedora-24/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/generate.sh b/cli/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/generate.sh rename to cli/vendor/github.com/moby/moby/contrib/builder/rpm/ppc64le/generate.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/check-config.sh b/cli/vendor/github.com/moby/moby/contrib/check-config.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/check-config.sh rename to cli/vendor/github.com/moby/moby/contrib/check-config.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/completion/REVIEWERS b/cli/vendor/github.com/moby/moby/contrib/completion/REVIEWERS similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/completion/REVIEWERS rename to cli/vendor/github.com/moby/moby/contrib/completion/REVIEWERS diff --git a/fn/vendor/github.com/moby/moby/contrib/completion/bash/docker b/cli/vendor/github.com/moby/moby/contrib/completion/bash/docker similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/completion/bash/docker rename to cli/vendor/github.com/moby/moby/contrib/completion/bash/docker diff --git a/fn/vendor/github.com/moby/moby/contrib/completion/fish/docker.fish b/cli/vendor/github.com/moby/moby/contrib/completion/fish/docker.fish similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/completion/fish/docker.fish rename to cli/vendor/github.com/moby/moby/contrib/completion/fish/docker.fish diff --git a/fn/vendor/github.com/moby/moby/contrib/completion/powershell/readme.txt b/cli/vendor/github.com/moby/moby/contrib/completion/powershell/readme.txt similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/completion/powershell/readme.txt rename to cli/vendor/github.com/moby/moby/contrib/completion/powershell/readme.txt diff --git a/fn/vendor/github.com/moby/moby/contrib/completion/zsh/REVIEWERS b/cli/vendor/github.com/moby/moby/contrib/completion/zsh/REVIEWERS similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/completion/zsh/REVIEWERS rename to cli/vendor/github.com/moby/moby/contrib/completion/zsh/REVIEWERS diff --git a/fn/vendor/github.com/moby/moby/contrib/completion/zsh/_docker b/cli/vendor/github.com/moby/moby/contrib/completion/zsh/_docker similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/completion/zsh/_docker rename to cli/vendor/github.com/moby/moby/contrib/completion/zsh/_docker diff --git a/fn/vendor/github.com/moby/moby/contrib/desktop-integration/README.md b/cli/vendor/github.com/moby/moby/contrib/desktop-integration/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/desktop-integration/README.md rename to cli/vendor/github.com/moby/moby/contrib/desktop-integration/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/desktop-integration/chromium/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/desktop-integration/chromium/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/desktop-integration/chromium/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/desktop-integration/chromium/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/desktop-integration/gparted/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/desktop-integration/gparted/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/desktop-integration/gparted/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/desktop-integration/gparted/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/docker-device-tool/README.md b/cli/vendor/github.com/moby/moby/contrib/docker-device-tool/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/docker-device-tool/README.md rename to cli/vendor/github.com/moby/moby/contrib/docker-device-tool/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool.go b/cli/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool.go similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool.go rename to cli/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool.go diff --git a/fn/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool_windows.go b/cli/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool_windows.go rename to cli/vendor/github.com/moby/moby/contrib/docker-device-tool/device_tool_windows.go diff --git a/fn/vendor/github.com/moby/moby/contrib/docker-machine-install-bundle.sh b/cli/vendor/github.com/moby/moby/contrib/docker-machine-install-bundle.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/docker-machine-install-bundle.sh rename to cli/vendor/github.com/moby/moby/contrib/docker-machine-install-bundle.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/dockerize-disk.sh b/cli/vendor/github.com/moby/moby/contrib/dockerize-disk.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/dockerize-disk.sh rename to cli/vendor/github.com/moby/moby/contrib/dockerize-disk.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/download-frozen-image-v1.sh b/cli/vendor/github.com/moby/moby/contrib/download-frozen-image-v1.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/download-frozen-image-v1.sh rename to cli/vendor/github.com/moby/moby/contrib/download-frozen-image-v1.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/download-frozen-image-v2.sh b/cli/vendor/github.com/moby/moby/contrib/download-frozen-image-v2.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/download-frozen-image-v2.sh rename to cli/vendor/github.com/moby/moby/contrib/download-frozen-image-v2.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/editorconfig b/cli/vendor/github.com/moby/moby/contrib/editorconfig similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/editorconfig rename to cli/vendor/github.com/moby/moby/contrib/editorconfig diff --git a/fn/vendor/github.com/moby/moby/contrib/gitdm/aliases b/cli/vendor/github.com/moby/moby/contrib/gitdm/aliases similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/gitdm/aliases rename to cli/vendor/github.com/moby/moby/contrib/gitdm/aliases diff --git a/fn/vendor/github.com/moby/moby/contrib/gitdm/domain-map b/cli/vendor/github.com/moby/moby/contrib/gitdm/domain-map similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/gitdm/domain-map rename to cli/vendor/github.com/moby/moby/contrib/gitdm/domain-map diff --git a/fn/vendor/github.com/moby/moby/contrib/gitdm/generate_aliases.sh b/cli/vendor/github.com/moby/moby/contrib/gitdm/generate_aliases.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/gitdm/generate_aliases.sh rename to cli/vendor/github.com/moby/moby/contrib/gitdm/generate_aliases.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/gitdm/gitdm.config b/cli/vendor/github.com/moby/moby/contrib/gitdm/gitdm.config similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/gitdm/gitdm.config rename to cli/vendor/github.com/moby/moby/contrib/gitdm/gitdm.config diff --git a/fn/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile.solaris b/cli/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile.solaris similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile.solaris rename to cli/vendor/github.com/moby/moby/contrib/httpserver/Dockerfile.solaris diff --git a/fn/vendor/github.com/moby/moby/contrib/httpserver/server.go b/cli/vendor/github.com/moby/moby/contrib/httpserver/server.go similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/httpserver/server.go rename to cli/vendor/github.com/moby/moby/contrib/httpserver/server.go diff --git a/fn/vendor/github.com/moby/moby/contrib/init/openrc/docker.confd b/cli/vendor/github.com/moby/moby/contrib/init/openrc/docker.confd similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/openrc/docker.confd rename to cli/vendor/github.com/moby/moby/contrib/init/openrc/docker.confd diff --git a/fn/vendor/github.com/moby/moby/contrib/init/openrc/docker.initd b/cli/vendor/github.com/moby/moby/contrib/init/openrc/docker.initd similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/openrc/docker.initd rename to cli/vendor/github.com/moby/moby/contrib/init/openrc/docker.initd diff --git a/fn/vendor/github.com/moby/moby/contrib/init/systemd/REVIEWERS b/cli/vendor/github.com/moby/moby/contrib/init/systemd/REVIEWERS similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/systemd/REVIEWERS rename to cli/vendor/github.com/moby/moby/contrib/init/systemd/REVIEWERS diff --git a/fn/vendor/github.com/moby/moby/contrib/init/systemd/docker.service b/cli/vendor/github.com/moby/moby/contrib/init/systemd/docker.service similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/systemd/docker.service rename to cli/vendor/github.com/moby/moby/contrib/init/systemd/docker.service diff --git a/fn/vendor/github.com/moby/moby/contrib/init/systemd/docker.service.rpm b/cli/vendor/github.com/moby/moby/contrib/init/systemd/docker.service.rpm similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/systemd/docker.service.rpm rename to cli/vendor/github.com/moby/moby/contrib/init/systemd/docker.service.rpm diff --git a/fn/vendor/github.com/moby/moby/contrib/init/systemd/docker.socket b/cli/vendor/github.com/moby/moby/contrib/init/systemd/docker.socket similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/systemd/docker.socket rename to cli/vendor/github.com/moby/moby/contrib/init/systemd/docker.socket diff --git a/fn/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker b/cli/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker rename to cli/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker diff --git a/fn/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker.default b/cli/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker.default similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker.default rename to cli/vendor/github.com/moby/moby/contrib/init/sysvinit-debian/docker.default diff --git a/fn/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker b/cli/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker rename to cli/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker diff --git a/fn/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker.sysconfig b/cli/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker.sysconfig similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker.sysconfig rename to cli/vendor/github.com/moby/moby/contrib/init/sysvinit-redhat/docker.sysconfig diff --git a/fn/vendor/github.com/moby/moby/contrib/init/upstart/REVIEWERS b/cli/vendor/github.com/moby/moby/contrib/init/upstart/REVIEWERS similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/upstart/REVIEWERS rename to cli/vendor/github.com/moby/moby/contrib/init/upstart/REVIEWERS diff --git a/fn/vendor/github.com/moby/moby/contrib/init/upstart/docker.conf b/cli/vendor/github.com/moby/moby/contrib/init/upstart/docker.conf similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/init/upstart/docker.conf rename to cli/vendor/github.com/moby/moby/contrib/init/upstart/docker.conf diff --git a/fn/vendor/github.com/moby/moby/contrib/mac-install-bundle.sh b/cli/vendor/github.com/moby/moby/contrib/mac-install-bundle.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mac-install-bundle.sh rename to cli/vendor/github.com/moby/moby/contrib/mac-install-bundle.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-alpine.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-alpine.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-alpine.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-alpine.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-arch-pacman.conf b/cli/vendor/github.com/moby/moby/contrib/mkimage-arch-pacman.conf similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-arch-pacman.conf rename to cli/vendor/github.com/moby/moby/contrib/mkimage-arch-pacman.conf diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-arch.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-arch.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-arch.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-arch.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-archarm-pacman.conf b/cli/vendor/github.com/moby/moby/contrib/mkimage-archarm-pacman.conf similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-archarm-pacman.conf rename to cli/vendor/github.com/moby/moby/contrib/mkimage-archarm-pacman.conf diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-busybox.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-busybox.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-busybox.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-busybox.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-crux.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-crux.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-crux.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-crux.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-debootstrap.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-debootstrap.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-debootstrap.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-debootstrap.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-pld.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-pld.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-pld.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-pld.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-rinse.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-rinse.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-rinse.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-rinse.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage-yum.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage-yum.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage-yum.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage-yum.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage.sh b/cli/vendor/github.com/moby/moby/contrib/mkimage.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage.sh rename to cli/vendor/github.com/moby/moby/contrib/mkimage.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage/.febootstrap-minimize b/cli/vendor/github.com/moby/moby/contrib/mkimage/.febootstrap-minimize similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage/.febootstrap-minimize rename to cli/vendor/github.com/moby/moby/contrib/mkimage/.febootstrap-minimize diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage/busybox-static b/cli/vendor/github.com/moby/moby/contrib/mkimage/busybox-static similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage/busybox-static rename to cli/vendor/github.com/moby/moby/contrib/mkimage/busybox-static diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage/debootstrap b/cli/vendor/github.com/moby/moby/contrib/mkimage/debootstrap similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage/debootstrap rename to cli/vendor/github.com/moby/moby/contrib/mkimage/debootstrap diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage/mageia-urpmi b/cli/vendor/github.com/moby/moby/contrib/mkimage/mageia-urpmi similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage/mageia-urpmi rename to cli/vendor/github.com/moby/moby/contrib/mkimage/mageia-urpmi diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage/rinse b/cli/vendor/github.com/moby/moby/contrib/mkimage/rinse similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage/rinse rename to cli/vendor/github.com/moby/moby/contrib/mkimage/rinse diff --git a/fn/vendor/github.com/moby/moby/contrib/mkimage/solaris b/cli/vendor/github.com/moby/moby/contrib/mkimage/solaris similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/mkimage/solaris rename to cli/vendor/github.com/moby/moby/contrib/mkimage/solaris diff --git a/fn/vendor/github.com/moby/moby/contrib/nnp-test/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/nnp-test/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/nnp-test/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/nnp-test/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/nnp-test/nnp-test.c b/cli/vendor/github.com/moby/moby/contrib/nnp-test/nnp-test.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/nnp-test/nnp-test.c rename to cli/vendor/github.com/moby/moby/contrib/nnp-test/nnp-test.c diff --git a/fn/vendor/github.com/moby/moby/contrib/nuke-graph-directory.sh b/cli/vendor/github.com/moby/moby/contrib/nuke-graph-directory.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/nuke-graph-directory.sh rename to cli/vendor/github.com/moby/moby/contrib/nuke-graph-directory.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/project-stats.sh b/cli/vendor/github.com/moby/moby/contrib/project-stats.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/project-stats.sh rename to cli/vendor/github.com/moby/moby/contrib/project-stats.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/report-issue.sh b/cli/vendor/github.com/moby/moby/contrib/report-issue.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/report-issue.sh rename to cli/vendor/github.com/moby/moby/contrib/report-issue.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/reprepro/suites.sh b/cli/vendor/github.com/moby/moby/contrib/reprepro/suites.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/reprepro/suites.sh rename to cli/vendor/github.com/moby/moby/contrib/reprepro/suites.sh diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE b/cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE rename to cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/LICENSE diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/Makefile b/cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/Makefile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/Makefile rename to cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/Makefile diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/README.md b/cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/README.md rename to cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc b/cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc rename to cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.fc diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.if b/cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.if similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.if rename to cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.if diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.te b/cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.te similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.te rename to cli/vendor/github.com/moby/moby/contrib/selinux-fedora-24/docker-engine-selinux/docker.te diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/LICENSE diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/Makefile diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.fc diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.if diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker.te diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz b/cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz rename to cli/vendor/github.com/moby/moby/contrib/selinux-oraclelinux-7/docker-engine-selinux/docker_selinux.8.gz diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/LICENSE b/cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/LICENSE similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/LICENSE rename to cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/LICENSE diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/Makefile b/cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/Makefile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/Makefile rename to cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/Makefile diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.fc b/cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.fc similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.fc rename to cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.fc diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.if b/cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.if similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.if rename to cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.if diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.te b/cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.te similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.te rename to cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker.te diff --git a/fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz b/cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz rename to cli/vendor/github.com/moby/moby/contrib/selinux/docker-engine-selinux/docker_selinux.8.gz diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/nano/Dockerfile.nanorc b/cli/vendor/github.com/moby/moby/contrib/syntax/nano/Dockerfile.nanorc similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/nano/Dockerfile.nanorc rename to cli/vendor/github.com/moby/moby/contrib/syntax/nano/Dockerfile.nanorc diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/nano/README.md b/cli/vendor/github.com/moby/moby/contrib/syntax/nano/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/nano/README.md rename to cli/vendor/github.com/moby/moby/contrib/syntax/nano/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences b/cli/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences rename to cli/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Preferences/Dockerfile.tmPreferences diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage b/cli/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage rename to cli/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/Syntaxes/Dockerfile.tmLanguage diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/info.plist b/cli/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/info.plist similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/info.plist rename to cli/vendor/github.com/moby/moby/contrib/syntax/textmate/Docker.tmbundle/info.plist diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/textmate/README.md b/cli/vendor/github.com/moby/moby/contrib/syntax/textmate/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/textmate/README.md rename to cli/vendor/github.com/moby/moby/contrib/syntax/textmate/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/textmate/REVIEWERS b/cli/vendor/github.com/moby/moby/contrib/syntax/textmate/REVIEWERS similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/textmate/REVIEWERS rename to cli/vendor/github.com/moby/moby/contrib/syntax/textmate/REVIEWERS diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/vim/LICENSE b/cli/vendor/github.com/moby/moby/contrib/syntax/vim/LICENSE similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/vim/LICENSE rename to cli/vendor/github.com/moby/moby/contrib/syntax/vim/LICENSE diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/vim/README.md b/cli/vendor/github.com/moby/moby/contrib/syntax/vim/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/vim/README.md rename to cli/vendor/github.com/moby/moby/contrib/syntax/vim/README.md diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/vim/doc/dockerfile.txt b/cli/vendor/github.com/moby/moby/contrib/syntax/vim/doc/dockerfile.txt similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/vim/doc/dockerfile.txt rename to cli/vendor/github.com/moby/moby/contrib/syntax/vim/doc/dockerfile.txt diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/vim/ftdetect/dockerfile.vim b/cli/vendor/github.com/moby/moby/contrib/syntax/vim/ftdetect/dockerfile.vim similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/vim/ftdetect/dockerfile.vim rename to cli/vendor/github.com/moby/moby/contrib/syntax/vim/ftdetect/dockerfile.vim diff --git a/fn/vendor/github.com/moby/moby/contrib/syntax/vim/syntax/dockerfile.vim b/cli/vendor/github.com/moby/moby/contrib/syntax/vim/syntax/dockerfile.vim similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syntax/vim/syntax/dockerfile.vim rename to cli/vendor/github.com/moby/moby/contrib/syntax/vim/syntax/dockerfile.vim diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/Dockerfile b/cli/vendor/github.com/moby/moby/contrib/syscall-test/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/Dockerfile rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/acct.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/acct.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/acct.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/acct.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/appletalk.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/appletalk.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/appletalk.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/appletalk.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/exit32.s b/cli/vendor/github.com/moby/moby/contrib/syscall-test/exit32.s similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/exit32.s rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/exit32.s diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/ns.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/ns.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/ns.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/ns.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/raw.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/raw.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/raw.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/raw.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/setgid.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/setgid.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/setgid.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/setgid.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/setuid.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/setuid.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/setuid.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/setuid.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/socket.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/socket.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/socket.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/socket.c diff --git a/fn/vendor/github.com/moby/moby/contrib/syscall-test/userns.c b/cli/vendor/github.com/moby/moby/contrib/syscall-test/userns.c similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/syscall-test/userns.c rename to cli/vendor/github.com/moby/moby/contrib/syscall-test/userns.c diff --git a/fn/vendor/github.com/moby/moby/contrib/udev/80-docker.rules b/cli/vendor/github.com/moby/moby/contrib/udev/80-docker.rules similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/udev/80-docker.rules rename to cli/vendor/github.com/moby/moby/contrib/udev/80-docker.rules diff --git a/fn/vendor/github.com/moby/moby/contrib/vagrant-docker/README.md b/cli/vendor/github.com/moby/moby/contrib/vagrant-docker/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/contrib/vagrant-docker/README.md rename to cli/vendor/github.com/moby/moby/contrib/vagrant-docker/README.md diff --git a/fn/vendor/github.com/moby/moby/daemon/apparmor_default.go b/cli/vendor/github.com/moby/moby/daemon/apparmor_default.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/apparmor_default.go rename to cli/vendor/github.com/moby/moby/daemon/apparmor_default.go diff --git a/fn/vendor/github.com/moby/moby/daemon/apparmor_default_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/apparmor_default_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/apparmor_default_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/apparmor_default_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/archive.go b/cli/vendor/github.com/moby/moby/daemon/archive.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/archive.go rename to cli/vendor/github.com/moby/moby/daemon/archive.go diff --git a/fn/vendor/github.com/moby/moby/daemon/archive_unix.go b/cli/vendor/github.com/moby/moby/daemon/archive_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/archive_unix.go rename to cli/vendor/github.com/moby/moby/daemon/archive_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/archive_windows.go b/cli/vendor/github.com/moby/moby/daemon/archive_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/archive_windows.go rename to cli/vendor/github.com/moby/moby/daemon/archive_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/attach.go b/cli/vendor/github.com/moby/moby/daemon/attach.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/attach.go rename to cli/vendor/github.com/moby/moby/daemon/attach.go diff --git a/fn/vendor/github.com/moby/moby/daemon/auth.go b/cli/vendor/github.com/moby/moby/daemon/auth.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/auth.go rename to cli/vendor/github.com/moby/moby/daemon/auth.go diff --git a/fn/vendor/github.com/moby/moby/daemon/bindmount_solaris.go b/cli/vendor/github.com/moby/moby/daemon/bindmount_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/bindmount_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/bindmount_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/bindmount_unix.go b/cli/vendor/github.com/moby/moby/daemon/bindmount_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/bindmount_unix.go rename to cli/vendor/github.com/moby/moby/daemon/bindmount_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cache.go b/cli/vendor/github.com/moby/moby/daemon/cache.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cache.go rename to cli/vendor/github.com/moby/moby/daemon/cache.go diff --git a/fn/vendor/github.com/moby/moby/daemon/caps/utils_unix.go b/cli/vendor/github.com/moby/moby/daemon/caps/utils_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/caps/utils_unix.go rename to cli/vendor/github.com/moby/moby/daemon/caps/utils_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/changes.go b/cli/vendor/github.com/moby/moby/daemon/changes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/changes.go rename to cli/vendor/github.com/moby/moby/daemon/changes.go diff --git a/fn/vendor/github.com/moby/moby/daemon/checkpoint.go b/cli/vendor/github.com/moby/moby/daemon/checkpoint.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/checkpoint.go rename to cli/vendor/github.com/moby/moby/daemon/checkpoint.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster.go b/cli/vendor/github.com/moby/moby/daemon/cluster.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster.go rename to cli/vendor/github.com/moby/moby/daemon/cluster.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/cluster.go b/cli/vendor/github.com/moby/moby/daemon/cluster/cluster.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/cluster.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/cluster.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/container.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/container.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/container.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/network.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/network.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/network.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/node.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/node.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/node.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/node.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/secret.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/secret.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/secret.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/secret.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/service.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/service.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/service.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/swarm.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/swarm.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/swarm.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/swarm.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/convert/task.go b/cli/vendor/github.com/moby/moby/daemon/cluster/convert/task.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/convert/task.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/convert/task.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/backend.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/backend.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/backend.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/backend.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/adapter.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/adapter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/adapter.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/adapter.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/attachment.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/attachment.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/attachment.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/attachment.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/container.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/container.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/container.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/controller.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/controller.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/controller.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/controller.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/errors.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/errors.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/errors.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/executor.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/executor.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/executor.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/executor.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/health_test.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/health_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/health_test.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/health_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_test.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_test.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_unix_test.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_unix_test.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_windows_test.go b/cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_windows_test.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/executor/container/validate_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/filters.go b/cli/vendor/github.com/moby/moby/daemon/cluster/filters.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/filters.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/filters.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/filters_test.go b/cli/vendor/github.com/moby/moby/daemon/cluster/filters_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/filters_test.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/filters_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/helpers.go b/cli/vendor/github.com/moby/moby/daemon/cluster/helpers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/helpers.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/helpers.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr.go b/cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr_linux.go b/cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr_linux.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr_others.go b/cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr_others.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr_others.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr_others.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr_solaris.go b/cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/listen_addr_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/listen_addr_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/networks.go b/cli/vendor/github.com/moby/moby/daemon/cluster/networks.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/networks.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/networks.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/noderunner.go b/cli/vendor/github.com/moby/moby/daemon/cluster/noderunner.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/noderunner.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/noderunner.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/nodes.go b/cli/vendor/github.com/moby/moby/daemon/cluster/nodes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/nodes.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/nodes.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/provider/network.go b/cli/vendor/github.com/moby/moby/daemon/cluster/provider/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/provider/network.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/provider/network.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/secrets.go b/cli/vendor/github.com/moby/moby/daemon/cluster/secrets.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/secrets.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/secrets.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/services.go b/cli/vendor/github.com/moby/moby/daemon/cluster/services.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/services.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/services.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/swarm.go b/cli/vendor/github.com/moby/moby/daemon/cluster/swarm.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/swarm.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/swarm.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/tasks.go b/cli/vendor/github.com/moby/moby/daemon/cluster/tasks.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/tasks.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/tasks.go diff --git a/fn/vendor/github.com/moby/moby/daemon/cluster/utils.go b/cli/vendor/github.com/moby/moby/daemon/cluster/utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/cluster/utils.go rename to cli/vendor/github.com/moby/moby/daemon/cluster/utils.go diff --git a/fn/vendor/github.com/moby/moby/daemon/commit.go b/cli/vendor/github.com/moby/moby/daemon/commit.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/commit.go rename to cli/vendor/github.com/moby/moby/daemon/commit.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config.go b/cli/vendor/github.com/moby/moby/daemon/config/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config.go rename to cli/vendor/github.com/moby/moby/daemon/config/config.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_common_unix.go b/cli/vendor/github.com/moby/moby/daemon/config/config_common_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_common_unix.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_common_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_common_unix_test.go b/cli/vendor/github.com/moby/moby/daemon/config/config_common_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_common_unix_test.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_common_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_solaris.go b/cli/vendor/github.com/moby/moby/daemon/config/config_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_test.go b/cli/vendor/github.com/moby/moby/daemon/config/config_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_test.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_unix.go b/cli/vendor/github.com/moby/moby/daemon/config/config_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_unix.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_unix_test.go b/cli/vendor/github.com/moby/moby/daemon/config/config_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_unix_test.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_windows.go b/cli/vendor/github.com/moby/moby/daemon/config/config_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_windows.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/config/config_windows_test.go b/cli/vendor/github.com/moby/moby/daemon/config/config_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/config/config_windows_test.go rename to cli/vendor/github.com/moby/moby/daemon/config/config_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container.go b/cli/vendor/github.com/moby/moby/daemon/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container.go rename to cli/vendor/github.com/moby/moby/daemon/container.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container_linux.go b/cli/vendor/github.com/moby/moby/daemon/container_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container_linux.go rename to cli/vendor/github.com/moby/moby/daemon/container_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container_operations.go b/cli/vendor/github.com/moby/moby/daemon/container_operations.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container_operations.go rename to cli/vendor/github.com/moby/moby/daemon/container_operations.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container_operations_solaris.go b/cli/vendor/github.com/moby/moby/daemon/container_operations_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container_operations_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/container_operations_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container_operations_unix.go b/cli/vendor/github.com/moby/moby/daemon/container_operations_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container_operations_unix.go rename to cli/vendor/github.com/moby/moby/daemon/container_operations_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container_operations_windows.go b/cli/vendor/github.com/moby/moby/daemon/container_operations_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container_operations_windows.go rename to cli/vendor/github.com/moby/moby/daemon/container_operations_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/container_windows.go b/cli/vendor/github.com/moby/moby/daemon/container_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/container_windows.go rename to cli/vendor/github.com/moby/moby/daemon/container_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/create.go b/cli/vendor/github.com/moby/moby/daemon/create.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/create.go rename to cli/vendor/github.com/moby/moby/daemon/create.go diff --git a/fn/vendor/github.com/moby/moby/daemon/create_unix.go b/cli/vendor/github.com/moby/moby/daemon/create_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/create_unix.go rename to cli/vendor/github.com/moby/moby/daemon/create_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/create_windows.go b/cli/vendor/github.com/moby/moby/daemon/create_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/create_windows.go rename to cli/vendor/github.com/moby/moby/daemon/create_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon.go b/cli/vendor/github.com/moby/moby/daemon/daemon.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon.go rename to cli/vendor/github.com/moby/moby/daemon/daemon.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_experimental.go b/cli/vendor/github.com/moby/moby/daemon/daemon_experimental.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_experimental.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_experimental.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_linux.go b/cli/vendor/github.com/moby/moby/daemon/daemon_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_linux.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_linux_test.go b/cli/vendor/github.com/moby/moby/daemon/daemon_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_linux_test.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_solaris.go b/cli/vendor/github.com/moby/moby/daemon/daemon_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_test.go b/cli/vendor/github.com/moby/moby/daemon/daemon_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_test.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_unix.go b/cli/vendor/github.com/moby/moby/daemon/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_unix.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_unix_test.go b/cli/vendor/github.com/moby/moby/daemon/daemon_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_unix_test.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/daemon_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/daemon_windows.go b/cli/vendor/github.com/moby/moby/daemon/daemon_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/daemon_windows.go rename to cli/vendor/github.com/moby/moby/daemon/daemon_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/debugtrap.go b/cli/vendor/github.com/moby/moby/daemon/debugtrap.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/debugtrap.go rename to cli/vendor/github.com/moby/moby/daemon/debugtrap.go diff --git a/fn/vendor/github.com/moby/moby/daemon/debugtrap_unix.go b/cli/vendor/github.com/moby/moby/daemon/debugtrap_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/debugtrap_unix.go rename to cli/vendor/github.com/moby/moby/daemon/debugtrap_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/debugtrap_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/debugtrap_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/debugtrap_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/debugtrap_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/debugtrap_windows.go b/cli/vendor/github.com/moby/moby/daemon/debugtrap_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/debugtrap_windows.go rename to cli/vendor/github.com/moby/moby/daemon/debugtrap_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/delete.go b/cli/vendor/github.com/moby/moby/daemon/delete.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/delete.go rename to cli/vendor/github.com/moby/moby/daemon/delete.go diff --git a/fn/vendor/github.com/moby/moby/daemon/delete_test.go b/cli/vendor/github.com/moby/moby/daemon/delete_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/delete_test.go rename to cli/vendor/github.com/moby/moby/daemon/delete_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/discovery/discovery.go b/cli/vendor/github.com/moby/moby/daemon/discovery/discovery.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/discovery/discovery.go rename to cli/vendor/github.com/moby/moby/daemon/discovery/discovery.go diff --git a/fn/vendor/github.com/moby/moby/daemon/discovery/discovery_test.go b/cli/vendor/github.com/moby/moby/daemon/discovery/discovery_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/discovery/discovery_test.go rename to cli/vendor/github.com/moby/moby/daemon/discovery/discovery_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/disk_usage.go b/cli/vendor/github.com/moby/moby/daemon/disk_usage.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/disk_usage.go rename to cli/vendor/github.com/moby/moby/daemon/disk_usage.go diff --git a/fn/vendor/github.com/moby/moby/daemon/errors.go b/cli/vendor/github.com/moby/moby/daemon/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/errors.go rename to cli/vendor/github.com/moby/moby/daemon/errors.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events.go b/cli/vendor/github.com/moby/moby/daemon/events.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events.go rename to cli/vendor/github.com/moby/moby/daemon/events.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events/events.go b/cli/vendor/github.com/moby/moby/daemon/events/events.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events/events.go rename to cli/vendor/github.com/moby/moby/daemon/events/events.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events/events_test.go b/cli/vendor/github.com/moby/moby/daemon/events/events_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events/events_test.go rename to cli/vendor/github.com/moby/moby/daemon/events/events_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events/filter.go b/cli/vendor/github.com/moby/moby/daemon/events/filter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events/filter.go rename to cli/vendor/github.com/moby/moby/daemon/events/filter.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events/metrics.go b/cli/vendor/github.com/moby/moby/daemon/events/metrics.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events/metrics.go rename to cli/vendor/github.com/moby/moby/daemon/events/metrics.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events/testutils/testutils.go b/cli/vendor/github.com/moby/moby/daemon/events/testutils/testutils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events/testutils/testutils.go rename to cli/vendor/github.com/moby/moby/daemon/events/testutils/testutils.go diff --git a/fn/vendor/github.com/moby/moby/daemon/events_test.go b/cli/vendor/github.com/moby/moby/daemon/events_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/events_test.go rename to cli/vendor/github.com/moby/moby/daemon/events_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/exec.go b/cli/vendor/github.com/moby/moby/daemon/exec.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/exec.go rename to cli/vendor/github.com/moby/moby/daemon/exec.go diff --git a/fn/vendor/github.com/moby/moby/daemon/exec/exec.go b/cli/vendor/github.com/moby/moby/daemon/exec/exec.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/exec/exec.go rename to cli/vendor/github.com/moby/moby/daemon/exec/exec.go diff --git a/fn/vendor/github.com/moby/moby/daemon/exec_linux.go b/cli/vendor/github.com/moby/moby/daemon/exec_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/exec_linux.go rename to cli/vendor/github.com/moby/moby/daemon/exec_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/exec_solaris.go b/cli/vendor/github.com/moby/moby/daemon/exec_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/exec_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/exec_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/exec_windows.go b/cli/vendor/github.com/moby/moby/daemon/exec_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/exec_windows.go rename to cli/vendor/github.com/moby/moby/daemon/exec_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/export.go b/cli/vendor/github.com/moby/moby/daemon/export.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/export.go rename to cli/vendor/github.com/moby/moby/daemon/export.go diff --git a/fn/vendor/github.com/moby/moby/daemon/getsize_unix.go b/cli/vendor/github.com/moby/moby/daemon/getsize_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/getsize_unix.go rename to cli/vendor/github.com/moby/moby/daemon/getsize_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/aufs_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/dirs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/dirs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/dirs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/dirs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_linux.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_linux.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/aufs/mount_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/btrfs_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/dummy_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/dummy_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/dummy_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/dummy_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_none.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_none.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_none.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_none.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/btrfs/version_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/counter.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/counter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/counter.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/counter.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/README.md b/cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/README.md rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/README.md diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/deviceset.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/deviceset.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/deviceset.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/deviceset.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_doc.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_doc.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_doc.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_doc.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/devmapper_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/driver.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/driver.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/driver.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/driver.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/mount.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/mount.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/devmapper/mount.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/driver.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/driver.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/driver.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/driver.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_freebsd.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_freebsd.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_linux.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_linux.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_solaris.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_windows.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/driver_windows.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/driver_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/fsdiff.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/fsdiff.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/fsdiff.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/fsdiff.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphbench_unix.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphbench_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphbench_unix.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphbench_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_unix.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_unix.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_windows.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_windows.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/graphtest_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil_unix.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil_unix.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/graphtest/testutil_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/copy.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/copy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/copy.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/copy.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay/overlay_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/check.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/check.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/check.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/check.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/mount.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/mount.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/mount.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/overlay_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/randomid.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/randomid.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/randomid.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlay2/randomid.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/overlayutils/overlayutils.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/overlayutils/overlayutils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/overlayutils/overlayutils.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/overlayutils/overlayutils.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/plugin.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/plugin.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/plugin.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/proxy.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/proxy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/proxy.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/proxy.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/quota/projectquota.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/quota/projectquota.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/quota/projectquota.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/quota/projectquota.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_aufs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_aufs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_aufs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_aufs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_btrfs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_btrfs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_btrfs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_btrfs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_devicemapper.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_devicemapper.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_devicemapper.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_devicemapper.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_overlay.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_overlay.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_overlay.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_overlay.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_vfs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_vfs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_vfs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_vfs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_windows.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_windows.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_zfs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_zfs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/register/register_zfs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/register/register_zfs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/vfs/driver.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/vfs/driver.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/vfs/driver.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/vfs/driver.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/vfs/vfs_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/vfs/vfs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/vfs/vfs_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/vfs/vfs_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/windows/windows.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/windows/windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/windows/windows.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/windows/windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/MAINTAINERS b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/MAINTAINERS similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/MAINTAINERS rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/MAINTAINERS diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_freebsd.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_freebsd.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_linux.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_linux.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_solaris.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_test.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_test.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/graphdriver/zfs/zfs_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/health.go b/cli/vendor/github.com/moby/moby/daemon/health.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/health.go rename to cli/vendor/github.com/moby/moby/daemon/health.go diff --git a/fn/vendor/github.com/moby/moby/daemon/health_test.go b/cli/vendor/github.com/moby/moby/daemon/health_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/health_test.go rename to cli/vendor/github.com/moby/moby/daemon/health_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image.go b/cli/vendor/github.com/moby/moby/daemon/image.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image.go rename to cli/vendor/github.com/moby/moby/daemon/image.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_delete.go b/cli/vendor/github.com/moby/moby/daemon/image_delete.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_delete.go rename to cli/vendor/github.com/moby/moby/daemon/image_delete.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_exporter.go b/cli/vendor/github.com/moby/moby/daemon/image_exporter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_exporter.go rename to cli/vendor/github.com/moby/moby/daemon/image_exporter.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_history.go b/cli/vendor/github.com/moby/moby/daemon/image_history.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_history.go rename to cli/vendor/github.com/moby/moby/daemon/image_history.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_inspect.go b/cli/vendor/github.com/moby/moby/daemon/image_inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_inspect.go rename to cli/vendor/github.com/moby/moby/daemon/image_inspect.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_pull.go b/cli/vendor/github.com/moby/moby/daemon/image_pull.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_pull.go rename to cli/vendor/github.com/moby/moby/daemon/image_pull.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_push.go b/cli/vendor/github.com/moby/moby/daemon/image_push.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_push.go rename to cli/vendor/github.com/moby/moby/daemon/image_push.go diff --git a/fn/vendor/github.com/moby/moby/daemon/image_tag.go b/cli/vendor/github.com/moby/moby/daemon/image_tag.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/image_tag.go rename to cli/vendor/github.com/moby/moby/daemon/image_tag.go diff --git a/fn/vendor/github.com/moby/moby/daemon/images.go b/cli/vendor/github.com/moby/moby/daemon/images.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/images.go rename to cli/vendor/github.com/moby/moby/daemon/images.go diff --git a/fn/vendor/github.com/moby/moby/daemon/import.go b/cli/vendor/github.com/moby/moby/daemon/import.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/import.go rename to cli/vendor/github.com/moby/moby/daemon/import.go diff --git a/fn/vendor/github.com/moby/moby/daemon/info.go b/cli/vendor/github.com/moby/moby/daemon/info.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/info.go rename to cli/vendor/github.com/moby/moby/daemon/info.go diff --git a/fn/vendor/github.com/moby/moby/daemon/info_unix.go b/cli/vendor/github.com/moby/moby/daemon/info_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/info_unix.go rename to cli/vendor/github.com/moby/moby/daemon/info_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/info_unix_test.go b/cli/vendor/github.com/moby/moby/daemon/info_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/info_unix_test.go rename to cli/vendor/github.com/moby/moby/daemon/info_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/info_windows.go b/cli/vendor/github.com/moby/moby/daemon/info_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/info_windows.go rename to cli/vendor/github.com/moby/moby/daemon/info_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/initlayer/setup_solaris.go b/cli/vendor/github.com/moby/moby/daemon/initlayer/setup_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/initlayer/setup_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/initlayer/setup_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/initlayer/setup_unix.go b/cli/vendor/github.com/moby/moby/daemon/initlayer/setup_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/initlayer/setup_unix.go rename to cli/vendor/github.com/moby/moby/daemon/initlayer/setup_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/initlayer/setup_windows.go b/cli/vendor/github.com/moby/moby/daemon/initlayer/setup_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/initlayer/setup_windows.go rename to cli/vendor/github.com/moby/moby/daemon/initlayer/setup_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/inspect.go b/cli/vendor/github.com/moby/moby/daemon/inspect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/inspect.go rename to cli/vendor/github.com/moby/moby/daemon/inspect.go diff --git a/fn/vendor/github.com/moby/moby/daemon/inspect_solaris.go b/cli/vendor/github.com/moby/moby/daemon/inspect_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/inspect_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/inspect_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/inspect_unix.go b/cli/vendor/github.com/moby/moby/daemon/inspect_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/inspect_unix.go rename to cli/vendor/github.com/moby/moby/daemon/inspect_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/inspect_windows.go b/cli/vendor/github.com/moby/moby/daemon/inspect_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/inspect_windows.go rename to cli/vendor/github.com/moby/moby/daemon/inspect_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/keys.go b/cli/vendor/github.com/moby/moby/daemon/keys.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/keys.go rename to cli/vendor/github.com/moby/moby/daemon/keys.go diff --git a/fn/vendor/github.com/moby/moby/daemon/keys_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/keys_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/keys_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/keys_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/kill.go b/cli/vendor/github.com/moby/moby/daemon/kill.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/kill.go rename to cli/vendor/github.com/moby/moby/daemon/kill.go diff --git a/fn/vendor/github.com/moby/moby/daemon/links.go b/cli/vendor/github.com/moby/moby/daemon/links.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/links.go rename to cli/vendor/github.com/moby/moby/daemon/links.go diff --git a/fn/vendor/github.com/moby/moby/daemon/links/links.go b/cli/vendor/github.com/moby/moby/daemon/links/links.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/links/links.go rename to cli/vendor/github.com/moby/moby/daemon/links/links.go diff --git a/fn/vendor/github.com/moby/moby/daemon/links/links_test.go b/cli/vendor/github.com/moby/moby/daemon/links/links_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/links/links_test.go rename to cli/vendor/github.com/moby/moby/daemon/links/links_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/list.go b/cli/vendor/github.com/moby/moby/daemon/list.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/list.go rename to cli/vendor/github.com/moby/moby/daemon/list.go diff --git a/fn/vendor/github.com/moby/moby/daemon/list_unix.go b/cli/vendor/github.com/moby/moby/daemon/list_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/list_unix.go rename to cli/vendor/github.com/moby/moby/daemon/list_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/list_windows.go b/cli/vendor/github.com/moby/moby/daemon/list_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/list_windows.go rename to cli/vendor/github.com/moby/moby/daemon/list_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logdrivers_linux.go b/cli/vendor/github.com/moby/moby/daemon/logdrivers_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logdrivers_linux.go rename to cli/vendor/github.com/moby/moby/daemon/logdrivers_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logdrivers_windows.go b/cli/vendor/github.com/moby/moby/daemon/logdrivers_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logdrivers_windows.go rename to cli/vendor/github.com/moby/moby/daemon/logdrivers_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/adapter.go b/cli/vendor/github.com/moby/moby/daemon/logger/adapter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/adapter.go rename to cli/vendor/github.com/moby/moby/daemon/logger/adapter.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/adapter_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/adapter_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/adapter_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/adapter_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs.go b/cli/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs.go rename to cli/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/awslogs/cloudwatchlogs_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/awslogs/cwlogsiface_mock_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/awslogs/cwlogsiface_mock_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/awslogs/cwlogsiface_mock_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/awslogs/cwlogsiface_mock_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/copier.go b/cli/vendor/github.com/moby/moby/daemon/logger/copier.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/copier.go rename to cli/vendor/github.com/moby/moby/daemon/logger/copier.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/copier_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/copier_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/copier_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/copier_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/etwlogs/etwlogs_windows.go b/cli/vendor/github.com/moby/moby/daemon/logger/etwlogs/etwlogs_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/etwlogs/etwlogs_windows.go rename to cli/vendor/github.com/moby/moby/daemon/logger/etwlogs/etwlogs_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/factory.go b/cli/vendor/github.com/moby/moby/daemon/logger/factory.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/factory.go rename to cli/vendor/github.com/moby/moby/daemon/logger/factory.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/fluentd/fluentd.go b/cli/vendor/github.com/moby/moby/daemon/logger/fluentd/fluentd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/fluentd/fluentd.go rename to cli/vendor/github.com/moby/moby/daemon/logger/fluentd/fluentd.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging.go b/cli/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging.go rename to cli/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_linux.go b/cli/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_linux.go rename to cli/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_others.go b/cli/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_others.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_others.go rename to cli/vendor/github.com/moby/moby/daemon/logger/gcplogs/gcplogging_others.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/gelf/gelf.go b/cli/vendor/github.com/moby/moby/daemon/logger/gelf/gelf.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/gelf/gelf.go rename to cli/vendor/github.com/moby/moby/daemon/logger/gelf/gelf.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/gelf/gelf_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/logger/gelf/gelf_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/gelf/gelf_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/logger/gelf/gelf_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/journald.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/journald.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/journald.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/journald.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/journald_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/journald_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/journald_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/journald_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/journald_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/journald_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/journald_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/journald_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/read.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/read.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/read.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/read.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/read_native.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/read_native.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/read_native.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/read_native.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/read_native_compat.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/read_native_compat.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/read_native_compat.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/read_native_compat.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/journald/read_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/logger/journald/read_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/journald/read_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/logger/journald/read_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog.go b/cli/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog.go rename to cli/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/jsonfilelog_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/read.go b/cli/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/read.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/read.go rename to cli/vendor/github.com/moby/moby/daemon/logger/jsonfilelog/read.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/logentries/logentries.go b/cli/vendor/github.com/moby/moby/daemon/logger/logentries/logentries.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/logentries/logentries.go rename to cli/vendor/github.com/moby/moby/daemon/logger/logentries/logentries.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/logger.go b/cli/vendor/github.com/moby/moby/daemon/logger/logger.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/logger.go rename to cli/vendor/github.com/moby/moby/daemon/logger/logger.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/logger_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/logger_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/logger_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/logger_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag.go b/cli/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag.go rename to cli/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/loggerutils/log_tag_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/loggerutils/rotatefilewriter.go b/cli/vendor/github.com/moby/moby/daemon/logger/loggerutils/rotatefilewriter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/loggerutils/rotatefilewriter.go rename to cli/vendor/github.com/moby/moby/daemon/logger/loggerutils/rotatefilewriter.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/loginfo.go b/cli/vendor/github.com/moby/moby/daemon/logger/loginfo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/loginfo.go rename to cli/vendor/github.com/moby/moby/daemon/logger/loginfo.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/plugin.go b/cli/vendor/github.com/moby/moby/daemon/logger/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/plugin.go rename to cli/vendor/github.com/moby/moby/daemon/logger/plugin.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/plugin_unix.go b/cli/vendor/github.com/moby/moby/daemon/logger/plugin_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/plugin_unix.go rename to cli/vendor/github.com/moby/moby/daemon/logger/plugin_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/plugin_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/logger/plugin_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/plugin_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/logger/plugin_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/proxy.go b/cli/vendor/github.com/moby/moby/daemon/logger/proxy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/proxy.go rename to cli/vendor/github.com/moby/moby/daemon/logger/proxy.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/ring.go b/cli/vendor/github.com/moby/moby/daemon/logger/ring.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/ring.go rename to cli/vendor/github.com/moby/moby/daemon/logger/ring.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/ring_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/ring_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/ring_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/ring_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/splunk/splunk.go b/cli/vendor/github.com/moby/moby/daemon/logger/splunk/splunk.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/splunk/splunk.go rename to cli/vendor/github.com/moby/moby/daemon/logger/splunk/splunk.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/splunk/splunk_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/splunk/splunk_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/splunk/splunk_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/splunk/splunk_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/splunk/splunkhecmock_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/splunk/splunkhecmock_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/splunk/splunkhecmock_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/splunk/splunkhecmock_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/syslog/syslog.go b/cli/vendor/github.com/moby/moby/daemon/logger/syslog/syslog.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/syslog/syslog.go rename to cli/vendor/github.com/moby/moby/daemon/logger/syslog/syslog.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logger/syslog/syslog_test.go b/cli/vendor/github.com/moby/moby/daemon/logger/syslog/syslog_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logger/syslog/syslog_test.go rename to cli/vendor/github.com/moby/moby/daemon/logger/syslog/syslog_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logs.go b/cli/vendor/github.com/moby/moby/daemon/logs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logs.go rename to cli/vendor/github.com/moby/moby/daemon/logs.go diff --git a/fn/vendor/github.com/moby/moby/daemon/logs_test.go b/cli/vendor/github.com/moby/moby/daemon/logs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/logs_test.go rename to cli/vendor/github.com/moby/moby/daemon/logs_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/metrics.go b/cli/vendor/github.com/moby/moby/daemon/metrics.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/metrics.go rename to cli/vendor/github.com/moby/moby/daemon/metrics.go diff --git a/fn/vendor/github.com/moby/moby/daemon/monitor.go b/cli/vendor/github.com/moby/moby/daemon/monitor.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/monitor.go rename to cli/vendor/github.com/moby/moby/daemon/monitor.go diff --git a/fn/vendor/github.com/moby/moby/daemon/monitor_linux.go b/cli/vendor/github.com/moby/moby/daemon/monitor_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/monitor_linux.go rename to cli/vendor/github.com/moby/moby/daemon/monitor_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/monitor_solaris.go b/cli/vendor/github.com/moby/moby/daemon/monitor_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/monitor_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/monitor_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/monitor_windows.go b/cli/vendor/github.com/moby/moby/daemon/monitor_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/monitor_windows.go rename to cli/vendor/github.com/moby/moby/daemon/monitor_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/mounts.go b/cli/vendor/github.com/moby/moby/daemon/mounts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/mounts.go rename to cli/vendor/github.com/moby/moby/daemon/mounts.go diff --git a/fn/vendor/github.com/moby/moby/daemon/names.go b/cli/vendor/github.com/moby/moby/daemon/names.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/names.go rename to cli/vendor/github.com/moby/moby/daemon/names.go diff --git a/fn/vendor/github.com/moby/moby/daemon/network.go b/cli/vendor/github.com/moby/moby/daemon/network.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/network.go rename to cli/vendor/github.com/moby/moby/daemon/network.go diff --git a/fn/vendor/github.com/moby/moby/daemon/network/settings.go b/cli/vendor/github.com/moby/moby/daemon/network/settings.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/network/settings.go rename to cli/vendor/github.com/moby/moby/daemon/network/settings.go diff --git a/fn/vendor/github.com/moby/moby/daemon/oci_linux.go b/cli/vendor/github.com/moby/moby/daemon/oci_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/oci_linux.go rename to cli/vendor/github.com/moby/moby/daemon/oci_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/oci_solaris.go b/cli/vendor/github.com/moby/moby/daemon/oci_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/oci_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/oci_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/oci_windows.go b/cli/vendor/github.com/moby/moby/daemon/oci_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/oci_windows.go rename to cli/vendor/github.com/moby/moby/daemon/oci_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/pause.go b/cli/vendor/github.com/moby/moby/daemon/pause.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/pause.go rename to cli/vendor/github.com/moby/moby/daemon/pause.go diff --git a/fn/vendor/github.com/moby/moby/daemon/prune.go b/cli/vendor/github.com/moby/moby/daemon/prune.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/prune.go rename to cli/vendor/github.com/moby/moby/daemon/prune.go diff --git a/fn/vendor/github.com/moby/moby/daemon/reload.go b/cli/vendor/github.com/moby/moby/daemon/reload.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/reload.go rename to cli/vendor/github.com/moby/moby/daemon/reload.go diff --git a/fn/vendor/github.com/moby/moby/daemon/reload_test.go b/cli/vendor/github.com/moby/moby/daemon/reload_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/reload_test.go rename to cli/vendor/github.com/moby/moby/daemon/reload_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/rename.go b/cli/vendor/github.com/moby/moby/daemon/rename.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/rename.go rename to cli/vendor/github.com/moby/moby/daemon/rename.go diff --git a/fn/vendor/github.com/moby/moby/daemon/resize.go b/cli/vendor/github.com/moby/moby/daemon/resize.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/resize.go rename to cli/vendor/github.com/moby/moby/daemon/resize.go diff --git a/fn/vendor/github.com/moby/moby/daemon/restart.go b/cli/vendor/github.com/moby/moby/daemon/restart.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/restart.go rename to cli/vendor/github.com/moby/moby/daemon/restart.go diff --git a/fn/vendor/github.com/moby/moby/daemon/search.go b/cli/vendor/github.com/moby/moby/daemon/search.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/search.go rename to cli/vendor/github.com/moby/moby/daemon/search.go diff --git a/fn/vendor/github.com/moby/moby/daemon/search_test.go b/cli/vendor/github.com/moby/moby/daemon/search_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/search_test.go rename to cli/vendor/github.com/moby/moby/daemon/search_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/seccomp_disabled.go b/cli/vendor/github.com/moby/moby/daemon/seccomp_disabled.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/seccomp_disabled.go rename to cli/vendor/github.com/moby/moby/daemon/seccomp_disabled.go diff --git a/fn/vendor/github.com/moby/moby/daemon/seccomp_linux.go b/cli/vendor/github.com/moby/moby/daemon/seccomp_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/seccomp_linux.go rename to cli/vendor/github.com/moby/moby/daemon/seccomp_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/seccomp_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/seccomp_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/seccomp_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/seccomp_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/secrets.go b/cli/vendor/github.com/moby/moby/daemon/secrets.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/secrets.go rename to cli/vendor/github.com/moby/moby/daemon/secrets.go diff --git a/fn/vendor/github.com/moby/moby/daemon/secrets_linux.go b/cli/vendor/github.com/moby/moby/daemon/secrets_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/secrets_linux.go rename to cli/vendor/github.com/moby/moby/daemon/secrets_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/secrets_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/secrets_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/secrets_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/secrets_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/selinux_linux.go b/cli/vendor/github.com/moby/moby/daemon/selinux_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/selinux_linux.go rename to cli/vendor/github.com/moby/moby/daemon/selinux_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/selinux_unsupported.go b/cli/vendor/github.com/moby/moby/daemon/selinux_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/selinux_unsupported.go rename to cli/vendor/github.com/moby/moby/daemon/selinux_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/daemon/start.go b/cli/vendor/github.com/moby/moby/daemon/start.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/start.go rename to cli/vendor/github.com/moby/moby/daemon/start.go diff --git a/fn/vendor/github.com/moby/moby/daemon/start_unix.go b/cli/vendor/github.com/moby/moby/daemon/start_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/start_unix.go rename to cli/vendor/github.com/moby/moby/daemon/start_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/start_windows.go b/cli/vendor/github.com/moby/moby/daemon/start_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/start_windows.go rename to cli/vendor/github.com/moby/moby/daemon/start_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats.go b/cli/vendor/github.com/moby/moby/daemon/stats.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats.go rename to cli/vendor/github.com/moby/moby/daemon/stats.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats/collector.go b/cli/vendor/github.com/moby/moby/daemon/stats/collector.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats/collector.go rename to cli/vendor/github.com/moby/moby/daemon/stats/collector.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats/collector_solaris.go b/cli/vendor/github.com/moby/moby/daemon/stats/collector_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats/collector_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/stats/collector_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats/collector_unix.go b/cli/vendor/github.com/moby/moby/daemon/stats/collector_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats/collector_unix.go rename to cli/vendor/github.com/moby/moby/daemon/stats/collector_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats/collector_windows.go b/cli/vendor/github.com/moby/moby/daemon/stats/collector_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats/collector_windows.go rename to cli/vendor/github.com/moby/moby/daemon/stats/collector_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats/types.go b/cli/vendor/github.com/moby/moby/daemon/stats/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats/types.go rename to cli/vendor/github.com/moby/moby/daemon/stats/types.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats_collector.go b/cli/vendor/github.com/moby/moby/daemon/stats_collector.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats_collector.go rename to cli/vendor/github.com/moby/moby/daemon/stats_collector.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats_unix.go b/cli/vendor/github.com/moby/moby/daemon/stats_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats_unix.go rename to cli/vendor/github.com/moby/moby/daemon/stats_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stats_windows.go b/cli/vendor/github.com/moby/moby/daemon/stats_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stats_windows.go rename to cli/vendor/github.com/moby/moby/daemon/stats_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/stop.go b/cli/vendor/github.com/moby/moby/daemon/stop.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/stop.go rename to cli/vendor/github.com/moby/moby/daemon/stop.go diff --git a/fn/vendor/github.com/moby/moby/daemon/top_unix.go b/cli/vendor/github.com/moby/moby/daemon/top_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/top_unix.go rename to cli/vendor/github.com/moby/moby/daemon/top_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/top_unix_test.go b/cli/vendor/github.com/moby/moby/daemon/top_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/top_unix_test.go rename to cli/vendor/github.com/moby/moby/daemon/top_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/top_windows.go b/cli/vendor/github.com/moby/moby/daemon/top_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/top_windows.go rename to cli/vendor/github.com/moby/moby/daemon/top_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/unpause.go b/cli/vendor/github.com/moby/moby/daemon/unpause.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/unpause.go rename to cli/vendor/github.com/moby/moby/daemon/unpause.go diff --git a/fn/vendor/github.com/moby/moby/daemon/update.go b/cli/vendor/github.com/moby/moby/daemon/update.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/update.go rename to cli/vendor/github.com/moby/moby/daemon/update.go diff --git a/fn/vendor/github.com/moby/moby/daemon/update_linux.go b/cli/vendor/github.com/moby/moby/daemon/update_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/update_linux.go rename to cli/vendor/github.com/moby/moby/daemon/update_linux.go diff --git a/fn/vendor/github.com/moby/moby/daemon/update_solaris.go b/cli/vendor/github.com/moby/moby/daemon/update_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/update_solaris.go rename to cli/vendor/github.com/moby/moby/daemon/update_solaris.go diff --git a/fn/vendor/github.com/moby/moby/daemon/update_windows.go b/cli/vendor/github.com/moby/moby/daemon/update_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/update_windows.go rename to cli/vendor/github.com/moby/moby/daemon/update_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/volumes.go b/cli/vendor/github.com/moby/moby/daemon/volumes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/volumes.go rename to cli/vendor/github.com/moby/moby/daemon/volumes.go diff --git a/fn/vendor/github.com/moby/moby/daemon/volumes_unit_test.go b/cli/vendor/github.com/moby/moby/daemon/volumes_unit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/volumes_unit_test.go rename to cli/vendor/github.com/moby/moby/daemon/volumes_unit_test.go diff --git a/fn/vendor/github.com/moby/moby/daemon/volumes_unix.go b/cli/vendor/github.com/moby/moby/daemon/volumes_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/volumes_unix.go rename to cli/vendor/github.com/moby/moby/daemon/volumes_unix.go diff --git a/fn/vendor/github.com/moby/moby/daemon/volumes_windows.go b/cli/vendor/github.com/moby/moby/daemon/volumes_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/volumes_windows.go rename to cli/vendor/github.com/moby/moby/daemon/volumes_windows.go diff --git a/fn/vendor/github.com/moby/moby/daemon/wait.go b/cli/vendor/github.com/moby/moby/daemon/wait.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/wait.go rename to cli/vendor/github.com/moby/moby/daemon/wait.go diff --git a/fn/vendor/github.com/moby/moby/daemon/workdir.go b/cli/vendor/github.com/moby/moby/daemon/workdir.go similarity index 100% rename from fn/vendor/github.com/moby/moby/daemon/workdir.go rename to cli/vendor/github.com/moby/moby/daemon/workdir.go diff --git a/fn/vendor/github.com/moby/moby/distribution/config.go b/cli/vendor/github.com/moby/moby/distribution/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/config.go rename to cli/vendor/github.com/moby/moby/distribution/config.go diff --git a/fn/vendor/github.com/moby/moby/distribution/errors.go b/cli/vendor/github.com/moby/moby/distribution/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/errors.go rename to cli/vendor/github.com/moby/moby/distribution/errors.go diff --git a/fn/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/bad_manifest b/cli/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/bad_manifest similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/bad_manifest rename to cli/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/bad_manifest diff --git a/fn/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/extra_data_manifest b/cli/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/extra_data_manifest similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/extra_data_manifest rename to cli/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/extra_data_manifest diff --git a/fn/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/good_manifest b/cli/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/good_manifest similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/good_manifest rename to cli/vendor/github.com/moby/moby/distribution/fixtures/validate_manifest/good_manifest diff --git a/fn/vendor/github.com/moby/moby/distribution/metadata/metadata.go b/cli/vendor/github.com/moby/moby/distribution/metadata/metadata.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/metadata/metadata.go rename to cli/vendor/github.com/moby/moby/distribution/metadata/metadata.go diff --git a/fn/vendor/github.com/moby/moby/distribution/metadata/v1_id_service.go b/cli/vendor/github.com/moby/moby/distribution/metadata/v1_id_service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/metadata/v1_id_service.go rename to cli/vendor/github.com/moby/moby/distribution/metadata/v1_id_service.go diff --git a/fn/vendor/github.com/moby/moby/distribution/metadata/v1_id_service_test.go b/cli/vendor/github.com/moby/moby/distribution/metadata/v1_id_service_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/metadata/v1_id_service_test.go rename to cli/vendor/github.com/moby/moby/distribution/metadata/v1_id_service_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service.go b/cli/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service.go rename to cli/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service.go diff --git a/fn/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service_test.go b/cli/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service_test.go rename to cli/vendor/github.com/moby/moby/distribution/metadata/v2_metadata_service_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/pull.go b/cli/vendor/github.com/moby/moby/distribution/pull.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/pull.go rename to cli/vendor/github.com/moby/moby/distribution/pull.go diff --git a/fn/vendor/github.com/moby/moby/distribution/pull_v1.go b/cli/vendor/github.com/moby/moby/distribution/pull_v1.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/pull_v1.go rename to cli/vendor/github.com/moby/moby/distribution/pull_v1.go diff --git a/fn/vendor/github.com/moby/moby/distribution/pull_v2.go b/cli/vendor/github.com/moby/moby/distribution/pull_v2.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/pull_v2.go rename to cli/vendor/github.com/moby/moby/distribution/pull_v2.go diff --git a/fn/vendor/github.com/moby/moby/distribution/pull_v2_test.go b/cli/vendor/github.com/moby/moby/distribution/pull_v2_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/pull_v2_test.go rename to cli/vendor/github.com/moby/moby/distribution/pull_v2_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/pull_v2_unix.go b/cli/vendor/github.com/moby/moby/distribution/pull_v2_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/pull_v2_unix.go rename to cli/vendor/github.com/moby/moby/distribution/pull_v2_unix.go diff --git a/fn/vendor/github.com/moby/moby/distribution/pull_v2_windows.go b/cli/vendor/github.com/moby/moby/distribution/pull_v2_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/pull_v2_windows.go rename to cli/vendor/github.com/moby/moby/distribution/pull_v2_windows.go diff --git a/fn/vendor/github.com/moby/moby/distribution/push.go b/cli/vendor/github.com/moby/moby/distribution/push.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/push.go rename to cli/vendor/github.com/moby/moby/distribution/push.go diff --git a/fn/vendor/github.com/moby/moby/distribution/push_v1.go b/cli/vendor/github.com/moby/moby/distribution/push_v1.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/push_v1.go rename to cli/vendor/github.com/moby/moby/distribution/push_v1.go diff --git a/fn/vendor/github.com/moby/moby/distribution/push_v2.go b/cli/vendor/github.com/moby/moby/distribution/push_v2.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/push_v2.go rename to cli/vendor/github.com/moby/moby/distribution/push_v2.go diff --git a/fn/vendor/github.com/moby/moby/distribution/push_v2_test.go b/cli/vendor/github.com/moby/moby/distribution/push_v2_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/push_v2_test.go rename to cli/vendor/github.com/moby/moby/distribution/push_v2_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/registry.go b/cli/vendor/github.com/moby/moby/distribution/registry.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/registry.go rename to cli/vendor/github.com/moby/moby/distribution/registry.go diff --git a/fn/vendor/github.com/moby/moby/distribution/registry_unit_test.go b/cli/vendor/github.com/moby/moby/distribution/registry_unit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/registry_unit_test.go rename to cli/vendor/github.com/moby/moby/distribution/registry_unit_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/utils/progress.go b/cli/vendor/github.com/moby/moby/distribution/utils/progress.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/utils/progress.go rename to cli/vendor/github.com/moby/moby/distribution/utils/progress.go diff --git a/fn/vendor/github.com/moby/moby/distribution/xfer/download.go b/cli/vendor/github.com/moby/moby/distribution/xfer/download.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/xfer/download.go rename to cli/vendor/github.com/moby/moby/distribution/xfer/download.go diff --git a/fn/vendor/github.com/moby/moby/distribution/xfer/download_test.go b/cli/vendor/github.com/moby/moby/distribution/xfer/download_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/xfer/download_test.go rename to cli/vendor/github.com/moby/moby/distribution/xfer/download_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/xfer/transfer.go b/cli/vendor/github.com/moby/moby/distribution/xfer/transfer.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/xfer/transfer.go rename to cli/vendor/github.com/moby/moby/distribution/xfer/transfer.go diff --git a/fn/vendor/github.com/moby/moby/distribution/xfer/transfer_test.go b/cli/vendor/github.com/moby/moby/distribution/xfer/transfer_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/xfer/transfer_test.go rename to cli/vendor/github.com/moby/moby/distribution/xfer/transfer_test.go diff --git a/fn/vendor/github.com/moby/moby/distribution/xfer/upload.go b/cli/vendor/github.com/moby/moby/distribution/xfer/upload.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/xfer/upload.go rename to cli/vendor/github.com/moby/moby/distribution/xfer/upload.go diff --git a/fn/vendor/github.com/moby/moby/distribution/xfer/upload_test.go b/cli/vendor/github.com/moby/moby/distribution/xfer/upload_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/distribution/xfer/upload_test.go rename to cli/vendor/github.com/moby/moby/distribution/xfer/upload_test.go diff --git a/fn/vendor/github.com/moby/moby/dockerversion/useragent.go b/cli/vendor/github.com/moby/moby/dockerversion/useragent.go similarity index 100% rename from fn/vendor/github.com/moby/moby/dockerversion/useragent.go rename to cli/vendor/github.com/moby/moby/dockerversion/useragent.go diff --git a/fn/vendor/github.com/moby/moby/dockerversion/version_lib.go b/cli/vendor/github.com/moby/moby/dockerversion/version_lib.go similarity index 100% rename from fn/vendor/github.com/moby/moby/dockerversion/version_lib.go rename to cli/vendor/github.com/moby/moby/dockerversion/version_lib.go diff --git a/fn/vendor/github.com/moby/moby/docs/README.md b/cli/vendor/github.com/moby/moby/docs/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/README.md rename to cli/vendor/github.com/moby/moby/docs/README.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.18.md b/cli/vendor/github.com/moby/moby/docs/api/v1.18.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.18.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.18.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.19.md b/cli/vendor/github.com/moby/moby/docs/api/v1.19.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.19.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.19.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.20.md b/cli/vendor/github.com/moby/moby/docs/api/v1.20.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.20.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.20.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.21.md b/cli/vendor/github.com/moby/moby/docs/api/v1.21.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.21.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.21.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.22.md b/cli/vendor/github.com/moby/moby/docs/api/v1.22.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.22.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.22.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.23.md b/cli/vendor/github.com/moby/moby/docs/api/v1.23.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.23.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.23.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/v1.24.md b/cli/vendor/github.com/moby/moby/docs/api/v1.24.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/v1.24.md rename to cli/vendor/github.com/moby/moby/docs/api/v1.24.md diff --git a/fn/vendor/github.com/moby/moby/docs/api/version-history.md b/cli/vendor/github.com/moby/moby/docs/api/version-history.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/api/version-history.md rename to cli/vendor/github.com/moby/moby/docs/api/version-history.md diff --git a/fn/vendor/github.com/moby/moby/docs/deprecated.md b/cli/vendor/github.com/moby/moby/docs/deprecated.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/deprecated.md rename to cli/vendor/github.com/moby/moby/docs/deprecated.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/EBS_volume.md b/cli/vendor/github.com/moby/moby/docs/extend/EBS_volume.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/EBS_volume.md rename to cli/vendor/github.com/moby/moby/docs/extend/EBS_volume.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/config.md b/cli/vendor/github.com/moby/moby/docs/extend/config.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/config.md rename to cli/vendor/github.com/moby/moby/docs/extend/config.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/images/authz_additional_info.png b/cli/vendor/github.com/moby/moby/docs/extend/images/authz_additional_info.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/images/authz_additional_info.png rename to cli/vendor/github.com/moby/moby/docs/extend/images/authz_additional_info.png diff --git a/fn/vendor/github.com/moby/moby/docs/extend/images/authz_allow.png b/cli/vendor/github.com/moby/moby/docs/extend/images/authz_allow.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/images/authz_allow.png rename to cli/vendor/github.com/moby/moby/docs/extend/images/authz_allow.png diff --git a/fn/vendor/github.com/moby/moby/docs/extend/images/authz_chunked.png b/cli/vendor/github.com/moby/moby/docs/extend/images/authz_chunked.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/images/authz_chunked.png rename to cli/vendor/github.com/moby/moby/docs/extend/images/authz_chunked.png diff --git a/fn/vendor/github.com/moby/moby/docs/extend/images/authz_connection_hijack.png b/cli/vendor/github.com/moby/moby/docs/extend/images/authz_connection_hijack.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/images/authz_connection_hijack.png rename to cli/vendor/github.com/moby/moby/docs/extend/images/authz_connection_hijack.png diff --git a/fn/vendor/github.com/moby/moby/docs/extend/images/authz_deny.png b/cli/vendor/github.com/moby/moby/docs/extend/images/authz_deny.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/images/authz_deny.png rename to cli/vendor/github.com/moby/moby/docs/extend/images/authz_deny.png diff --git a/fn/vendor/github.com/moby/moby/docs/extend/index.md b/cli/vendor/github.com/moby/moby/docs/extend/index.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/index.md rename to cli/vendor/github.com/moby/moby/docs/extend/index.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/legacy_plugins.md b/cli/vendor/github.com/moby/moby/docs/extend/legacy_plugins.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/legacy_plugins.md rename to cli/vendor/github.com/moby/moby/docs/extend/legacy_plugins.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugin_api.md b/cli/vendor/github.com/moby/moby/docs/extend/plugin_api.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugin_api.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugin_api.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugins_authorization.md b/cli/vendor/github.com/moby/moby/docs/extend/plugins_authorization.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugins_authorization.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugins_authorization.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugins_graphdriver.md b/cli/vendor/github.com/moby/moby/docs/extend/plugins_graphdriver.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugins_graphdriver.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugins_graphdriver.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugins_logging.md b/cli/vendor/github.com/moby/moby/docs/extend/plugins_logging.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugins_logging.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugins_logging.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugins_network.md b/cli/vendor/github.com/moby/moby/docs/extend/plugins_network.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugins_network.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugins_network.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugins_services.md b/cli/vendor/github.com/moby/moby/docs/extend/plugins_services.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugins_services.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugins_services.md diff --git a/fn/vendor/github.com/moby/moby/docs/extend/plugins_volume.md b/cli/vendor/github.com/moby/moby/docs/extend/plugins_volume.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/extend/plugins_volume.md rename to cli/vendor/github.com/moby/moby/docs/extend/plugins_volume.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/builder.md b/cli/vendor/github.com/moby/moby/docs/reference/builder.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/builder.md rename to cli/vendor/github.com/moby/moby/docs/reference/builder.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/attach.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/attach.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/attach.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/attach.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/build.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/build.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/build.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/build.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/cli.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/cli.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/cli.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/cli.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/commit.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/commit.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/commit.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/commit.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/container.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/container.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/container.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/container.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/container_prune.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/container_prune.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/container_prune.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/container_prune.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/cp.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/cp.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/cp.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/cp.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/create.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/create.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/create.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/deploy.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/deploy.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/deploy.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/deploy.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/diff.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/diff.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/diff.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/diff.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/dockerd.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/dockerd.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/dockerd.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/dockerd.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/events.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/events.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/events.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/events.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/exec.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/exec.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/exec.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/exec.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/export.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/export.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/export.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/export.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/history.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/history.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/history.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/history.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/image.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/image.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/image.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/image.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/image_prune.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/image_prune.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/image_prune.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/image_prune.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/images.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/images.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/images.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/images.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/import.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/import.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/import.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/import.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/index.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/index.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/index.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/index.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/info.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/info.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/info.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/info.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/kill.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/kill.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/kill.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/kill.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/load.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/load.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/load.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/load.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/login.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/login.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/login.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/login.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/logout.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/logout.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/logout.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/logout.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/logs.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/logs.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/logs.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/logs.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_connect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_connect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_connect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_connect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_create.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_create.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_create.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_disconnect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_disconnect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_disconnect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_disconnect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_prune.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_prune.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_prune.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_prune.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/network_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/network_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/network_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/network_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_demote.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_demote.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_demote.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_demote.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_promote.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_promote.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_promote.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_promote.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_ps.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_ps.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_ps.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_ps.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/node_update.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/node_update.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/node_update.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/node_update.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/pause.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/pause.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/pause.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/pause.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_create.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_create.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_create.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_disable.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_disable.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_disable.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_disable.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_enable.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_enable.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_enable.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_enable.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_install.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_install.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_install.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_install.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_push.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_push.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_push.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_push.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_set.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_set.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_set.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_set.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_upgrade.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_upgrade.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/plugin_upgrade.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/plugin_upgrade.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/port.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/port.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/port.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/port.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/ps.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/ps.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/ps.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/ps.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/pull.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/pull.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/pull.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/pull.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/push.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/push.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/push.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/push.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/rename.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/rename.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/rename.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/rename.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/restart.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/restart.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/restart.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/restart.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/rmi.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/rmi.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/rmi.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/rmi.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/run.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/run.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/run.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/run.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/save.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/save.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/save.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/save.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/search.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/search.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/search.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/search.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/secret.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/secret.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/secret.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/secret.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_create.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_create.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_create.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/secret_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/secret_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_create.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_create.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_create.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_logs.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_logs.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_logs.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_logs.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_ps.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_ps.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_ps.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_ps.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_scale.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_scale.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_scale.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_scale.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/service_update.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/service_update.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/service_update.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/service_update.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stack.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stack.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stack.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stack.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_deploy.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_deploy.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_deploy.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_deploy.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_ps.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_ps.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_ps.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_ps.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_services.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_services.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stack_services.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stack_services.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/start.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/start.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/start.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/start.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stats.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stats.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stats.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stats.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/stop.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/stop.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/stop.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/stop.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_init.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_init.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_init.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_init.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join_token.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join_token.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join_token.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_join_token.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_leave.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_leave.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_leave.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_leave.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock_key.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock_key.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock_key.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_unlock_key.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_update.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_update.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/swarm_update.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/swarm_update.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/system.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/system.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/system.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/system.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/system_df.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/system_df.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/system_df.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/system_df.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/system_prune.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/system_prune.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/system_prune.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/system_prune.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/tag.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/tag.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/tag.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/tag.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/top.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/top.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/top.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/top.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/unpause.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/unpause.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/unpause.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/unpause.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/update.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/update.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/update.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/update.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/version.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/version.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/version.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/version.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/volume.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/volume.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/volume.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/volume.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_create.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_create.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_create.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_inspect.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_inspect.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_inspect.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_ls.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_ls.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_ls.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_prune.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_prune.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_prune.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_prune.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_rm.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/volume_rm.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/volume_rm.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/commandline/wait.md b/cli/vendor/github.com/moby/moby/docs/reference/commandline/wait.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/commandline/wait.md rename to cli/vendor/github.com/moby/moby/docs/reference/commandline/wait.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/glossary.md b/cli/vendor/github.com/moby/moby/docs/reference/glossary.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/glossary.md rename to cli/vendor/github.com/moby/moby/docs/reference/glossary.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/index.md b/cli/vendor/github.com/moby/moby/docs/reference/index.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/index.md rename to cli/vendor/github.com/moby/moby/docs/reference/index.md diff --git a/fn/vendor/github.com/moby/moby/docs/reference/run.md b/cli/vendor/github.com/moby/moby/docs/reference/run.md similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/reference/run.md rename to cli/vendor/github.com/moby/moby/docs/reference/run.md diff --git a/fn/vendor/github.com/moby/moby/docs/static_files/contributors.png b/cli/vendor/github.com/moby/moby/docs/static_files/contributors.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/static_files/contributors.png rename to cli/vendor/github.com/moby/moby/docs/static_files/contributors.png diff --git a/fn/vendor/github.com/moby/moby/docs/static_files/docker-logo-compressed.png b/cli/vendor/github.com/moby/moby/docs/static_files/docker-logo-compressed.png similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/static_files/docker-logo-compressed.png rename to cli/vendor/github.com/moby/moby/docs/static_files/docker-logo-compressed.png diff --git a/fn/vendor/github.com/moby/moby/docs/yaml/Dockerfile b/cli/vendor/github.com/moby/moby/docs/yaml/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/yaml/Dockerfile rename to cli/vendor/github.com/moby/moby/docs/yaml/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/docs/yaml/generate.go b/cli/vendor/github.com/moby/moby/docs/yaml/generate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/yaml/generate.go rename to cli/vendor/github.com/moby/moby/docs/yaml/generate.go diff --git a/fn/vendor/github.com/moby/moby/docs/yaml/yaml.go b/cli/vendor/github.com/moby/moby/docs/yaml/yaml.go similarity index 100% rename from fn/vendor/github.com/moby/moby/docs/yaml/yaml.go rename to cli/vendor/github.com/moby/moby/docs/yaml/yaml.go diff --git a/fn/vendor/github.com/moby/moby/experimental/README.md b/cli/vendor/github.com/moby/moby/experimental/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/README.md rename to cli/vendor/github.com/moby/moby/experimental/README.md diff --git a/fn/vendor/github.com/moby/moby/experimental/checkpoint-restore.md b/cli/vendor/github.com/moby/moby/experimental/checkpoint-restore.md similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/checkpoint-restore.md rename to cli/vendor/github.com/moby/moby/experimental/checkpoint-restore.md diff --git a/fn/vendor/github.com/moby/moby/experimental/docker-stacks-and-bundles.md b/cli/vendor/github.com/moby/moby/experimental/docker-stacks-and-bundles.md similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/docker-stacks-and-bundles.md rename to cli/vendor/github.com/moby/moby/experimental/docker-stacks-and-bundles.md diff --git a/fn/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.gliffy b/cli/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.gliffy similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.gliffy rename to cli/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.gliffy diff --git a/fn/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.png b/cli/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.png similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.png rename to cli/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.png diff --git a/fn/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.svg b/cli/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.svg similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.svg rename to cli/vendor/github.com/moby/moby/experimental/images/ipvlan-l3.svg diff --git a/fn/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.gliffy b/cli/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.gliffy similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.gliffy rename to cli/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.gliffy diff --git a/fn/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.png b/cli/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.png similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.png rename to cli/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.png diff --git a/fn/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.svg b/cli/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.svg similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.svg rename to cli/vendor/github.com/moby/moby/experimental/images/ipvlan_l2_simple.svg diff --git a/fn/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.gliffy b/cli/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.gliffy similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.gliffy rename to cli/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.gliffy diff --git a/fn/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.png b/cli/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.png similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.png rename to cli/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.png diff --git a/fn/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.svg b/cli/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.svg similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.svg rename to cli/vendor/github.com/moby/moby/experimental/images/macvlan-bridge-ipvlan-l2.svg diff --git a/fn/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.gliffy b/cli/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.gliffy similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.gliffy rename to cli/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.gliffy diff --git a/fn/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.png b/cli/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.png similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.png rename to cli/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.png diff --git a/fn/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.svg b/cli/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.svg similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.svg rename to cli/vendor/github.com/moby/moby/experimental/images/multi_tenant_8021q_vlans.svg diff --git a/fn/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.gliffy b/cli/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.gliffy similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.gliffy rename to cli/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.gliffy diff --git a/fn/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.png b/cli/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.png similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.png rename to cli/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.png diff --git a/fn/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.svg b/cli/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.svg similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.svg rename to cli/vendor/github.com/moby/moby/experimental/images/vlans-deeper-look.svg diff --git a/fn/vendor/github.com/moby/moby/experimental/vlan-networks.md b/cli/vendor/github.com/moby/moby/experimental/vlan-networks.md similarity index 100% rename from fn/vendor/github.com/moby/moby/experimental/vlan-networks.md rename to cli/vendor/github.com/moby/moby/experimental/vlan-networks.md diff --git a/fn/vendor/github.com/moby/moby/hack/Jenkins/W2L/postbuild.sh b/cli/vendor/github.com/moby/moby/hack/Jenkins/W2L/postbuild.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/Jenkins/W2L/postbuild.sh rename to cli/vendor/github.com/moby/moby/hack/Jenkins/W2L/postbuild.sh diff --git a/fn/vendor/github.com/moby/moby/hack/Jenkins/W2L/setup.sh b/cli/vendor/github.com/moby/moby/hack/Jenkins/W2L/setup.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/Jenkins/W2L/setup.sh rename to cli/vendor/github.com/moby/moby/hack/Jenkins/W2L/setup.sh diff --git a/fn/vendor/github.com/moby/moby/hack/Jenkins/readme.md b/cli/vendor/github.com/moby/moby/hack/Jenkins/readme.md similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/Jenkins/readme.md rename to cli/vendor/github.com/moby/moby/hack/Jenkins/readme.md diff --git a/fn/vendor/github.com/moby/moby/hack/dind b/cli/vendor/github.com/moby/moby/hack/dind similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/dind rename to cli/vendor/github.com/moby/moby/hack/dind diff --git a/fn/vendor/github.com/moby/moby/hack/dockerfile/binaries-commits b/cli/vendor/github.com/moby/moby/hack/dockerfile/binaries-commits similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/dockerfile/binaries-commits rename to cli/vendor/github.com/moby/moby/hack/dockerfile/binaries-commits diff --git a/fn/vendor/github.com/moby/moby/hack/dockerfile/install-binaries.sh b/cli/vendor/github.com/moby/moby/hack/dockerfile/install-binaries.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/dockerfile/install-binaries.sh rename to cli/vendor/github.com/moby/moby/hack/dockerfile/install-binaries.sh diff --git a/fn/vendor/github.com/moby/moby/hack/generate-authors.sh b/cli/vendor/github.com/moby/moby/hack/generate-authors.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/generate-authors.sh rename to cli/vendor/github.com/moby/moby/hack/generate-authors.sh diff --git a/fn/vendor/github.com/moby/moby/hack/generate-swagger-api.sh b/cli/vendor/github.com/moby/moby/hack/generate-swagger-api.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/generate-swagger-api.sh rename to cli/vendor/github.com/moby/moby/hack/generate-swagger-api.sh diff --git a/fn/vendor/github.com/moby/moby/hack/install.sh b/cli/vendor/github.com/moby/moby/hack/install.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/install.sh rename to cli/vendor/github.com/moby/moby/hack/install.sh diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/README.md b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/README.md rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/README.md diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/Dockerfile b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/Dockerfile rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/call.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/call.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/call.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/call.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/master.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/master.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/master.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/master.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set_test.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set_test.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/master/set_test.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/types/types.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/types/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/types/types.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/types/types.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/vendor.conf b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/vendor.conf similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/vendor.conf rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/vendor.conf diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/executor.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/executor.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/executor.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/executor.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/worker.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/worker.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/worker.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/agent/worker/worker.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/compose.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/compose.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/compose.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/compose.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/dockercmd.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/dockercmd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/dockercmd.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/dockercmd.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate_test.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate_test.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/enumerate_test.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/host.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/host.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/host.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/host.go diff --git a/fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/volume.go b/cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/volume.go rename to cli/vendor/github.com/moby/moby/hack/integration-cli-on-swarm/host/volume.go diff --git a/fn/vendor/github.com/moby/moby/hack/make.ps1 b/cli/vendor/github.com/moby/moby/hack/make.ps1 similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make.ps1 rename to cli/vendor/github.com/moby/moby/hack/make.ps1 diff --git a/fn/vendor/github.com/moby/moby/hack/make.sh b/cli/vendor/github.com/moby/moby/hack/make.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make.sh rename to cli/vendor/github.com/moby/moby/hack/make.sh diff --git a/fn/vendor/github.com/moby/moby/hack/make/.binary b/cli/vendor/github.com/moby/moby/hack/make/.binary similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.binary rename to cli/vendor/github.com/moby/moby/hack/make/.binary diff --git a/fn/vendor/github.com/moby/moby/hack/make/.binary-setup b/cli/vendor/github.com/moby/moby/hack/make/.binary-setup similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.binary-setup rename to cli/vendor/github.com/moby/moby/hack/make/.binary-setup diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/compat b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/compat similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/compat rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/compat diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/control b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/control similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/control rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/control diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.bash-completion b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.bash-completion similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.bash-completion rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.bash-completion diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.default b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.default similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.default rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.default diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.init b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.init similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.init rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.init diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.upstart b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.upstart similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.upstart rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.docker.upstart diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.install b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.install similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.install rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.install diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.manpages b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.manpages similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.manpages rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.manpages diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.postinst b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.postinst similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.postinst rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.postinst diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.udev b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.udev similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.udev rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docker-engine.udev diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/docs b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/docs similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/docs rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/docs diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-deb/rules b/cli/vendor/github.com/moby/moby/hack/make/.build-deb/rules similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-deb/rules rename to cli/vendor/github.com/moby/moby/hack/make/.build-deb/rules diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine-selinux.spec b/cli/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine-selinux.spec similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine-selinux.spec rename to cli/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine-selinux.spec diff --git a/fn/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine.spec b/cli/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine.spec similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine.spec rename to cli/vendor/github.com/moby/moby/hack/make/.build-rpm/docker-engine.spec diff --git a/fn/vendor/github.com/moby/moby/hack/make/.detect-daemon-osarch b/cli/vendor/github.com/moby/moby/hack/make/.detect-daemon-osarch similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.detect-daemon-osarch rename to cli/vendor/github.com/moby/moby/hack/make/.detect-daemon-osarch diff --git a/fn/vendor/github.com/moby/moby/hack/make/.ensure-emptyfs b/cli/vendor/github.com/moby/moby/hack/make/.ensure-emptyfs similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.ensure-emptyfs rename to cli/vendor/github.com/moby/moby/hack/make/.ensure-emptyfs diff --git a/fn/vendor/github.com/moby/moby/hack/make/.go-autogen b/cli/vendor/github.com/moby/moby/hack/make/.go-autogen similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.go-autogen rename to cli/vendor/github.com/moby/moby/hack/make/.go-autogen diff --git a/fn/vendor/github.com/moby/moby/hack/make/.go-autogen.ps1 b/cli/vendor/github.com/moby/moby/hack/make/.go-autogen.ps1 similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.go-autogen.ps1 rename to cli/vendor/github.com/moby/moby/hack/make/.go-autogen.ps1 diff --git a/fn/vendor/github.com/moby/moby/hack/make/.integration-daemon-setup b/cli/vendor/github.com/moby/moby/hack/make/.integration-daemon-setup similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.integration-daemon-setup rename to cli/vendor/github.com/moby/moby/hack/make/.integration-daemon-setup diff --git a/fn/vendor/github.com/moby/moby/hack/make/.integration-daemon-start b/cli/vendor/github.com/moby/moby/hack/make/.integration-daemon-start similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.integration-daemon-start rename to cli/vendor/github.com/moby/moby/hack/make/.integration-daemon-start diff --git a/fn/vendor/github.com/moby/moby/hack/make/.integration-daemon-stop b/cli/vendor/github.com/moby/moby/hack/make/.integration-daemon-stop similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.integration-daemon-stop rename to cli/vendor/github.com/moby/moby/hack/make/.integration-daemon-stop diff --git a/fn/vendor/github.com/moby/moby/hack/make/.integration-test-helpers b/cli/vendor/github.com/moby/moby/hack/make/.integration-test-helpers similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.integration-test-helpers rename to cli/vendor/github.com/moby/moby/hack/make/.integration-test-helpers diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/common.rc b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/common.rc similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/common.rc rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/common.rc diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.exe.manifest b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.exe.manifest similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.exe.manifest rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.exe.manifest diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.ico b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.ico similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.ico rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.ico diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.png b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.png similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.png rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.png diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.rc b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.rc similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.rc rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/docker.rc diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/dockerd.rc b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/dockerd.rc similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/dockerd.rc rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/dockerd.rc diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/event_messages.mc b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/event_messages.mc similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/event_messages.mc rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/event_messages.mc diff --git a/fn/vendor/github.com/moby/moby/hack/make/.resources-windows/resources.go b/cli/vendor/github.com/moby/moby/hack/make/.resources-windows/resources.go similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/.resources-windows/resources.go rename to cli/vendor/github.com/moby/moby/hack/make/.resources-windows/resources.go diff --git a/fn/vendor/github.com/moby/moby/hack/make/README.md b/cli/vendor/github.com/moby/moby/hack/make/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/README.md rename to cli/vendor/github.com/moby/moby/hack/make/README.md diff --git a/fn/vendor/github.com/moby/moby/hack/make/binary b/cli/vendor/github.com/moby/moby/hack/make/binary similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/binary rename to cli/vendor/github.com/moby/moby/hack/make/binary diff --git a/fn/vendor/github.com/moby/moby/hack/make/binary-client b/cli/vendor/github.com/moby/moby/hack/make/binary-client similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/binary-client rename to cli/vendor/github.com/moby/moby/hack/make/binary-client diff --git a/fn/vendor/github.com/moby/moby/hack/make/binary-daemon b/cli/vendor/github.com/moby/moby/hack/make/binary-daemon similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/binary-daemon rename to cli/vendor/github.com/moby/moby/hack/make/binary-daemon diff --git a/fn/vendor/github.com/moby/moby/hack/make/build-deb b/cli/vendor/github.com/moby/moby/hack/make/build-deb similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/build-deb rename to cli/vendor/github.com/moby/moby/hack/make/build-deb diff --git a/fn/vendor/github.com/moby/moby/hack/make/build-integration-test-binary b/cli/vendor/github.com/moby/moby/hack/make/build-integration-test-binary similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/build-integration-test-binary rename to cli/vendor/github.com/moby/moby/hack/make/build-integration-test-binary diff --git a/fn/vendor/github.com/moby/moby/hack/make/build-rpm b/cli/vendor/github.com/moby/moby/hack/make/build-rpm similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/build-rpm rename to cli/vendor/github.com/moby/moby/hack/make/build-rpm diff --git a/fn/vendor/github.com/moby/moby/hack/make/clean-apt-repo b/cli/vendor/github.com/moby/moby/hack/make/clean-apt-repo similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/clean-apt-repo rename to cli/vendor/github.com/moby/moby/hack/make/clean-apt-repo diff --git a/fn/vendor/github.com/moby/moby/hack/make/clean-yum-repo b/cli/vendor/github.com/moby/moby/hack/make/clean-yum-repo similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/clean-yum-repo rename to cli/vendor/github.com/moby/moby/hack/make/clean-yum-repo diff --git a/fn/vendor/github.com/moby/moby/hack/make/cover b/cli/vendor/github.com/moby/moby/hack/make/cover similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/cover rename to cli/vendor/github.com/moby/moby/hack/make/cover diff --git a/fn/vendor/github.com/moby/moby/hack/make/cross b/cli/vendor/github.com/moby/moby/hack/make/cross similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/cross rename to cli/vendor/github.com/moby/moby/hack/make/cross diff --git a/fn/vendor/github.com/moby/moby/hack/make/dynbinary b/cli/vendor/github.com/moby/moby/hack/make/dynbinary similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/dynbinary rename to cli/vendor/github.com/moby/moby/hack/make/dynbinary diff --git a/fn/vendor/github.com/moby/moby/hack/make/dynbinary-client b/cli/vendor/github.com/moby/moby/hack/make/dynbinary-client similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/dynbinary-client rename to cli/vendor/github.com/moby/moby/hack/make/dynbinary-client diff --git a/fn/vendor/github.com/moby/moby/hack/make/dynbinary-daemon b/cli/vendor/github.com/moby/moby/hack/make/dynbinary-daemon similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/dynbinary-daemon rename to cli/vendor/github.com/moby/moby/hack/make/dynbinary-daemon diff --git a/fn/vendor/github.com/moby/moby/hack/make/generate-index-listing b/cli/vendor/github.com/moby/moby/hack/make/generate-index-listing similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/generate-index-listing rename to cli/vendor/github.com/moby/moby/hack/make/generate-index-listing diff --git a/fn/vendor/github.com/moby/moby/hack/make/install-binary b/cli/vendor/github.com/moby/moby/hack/make/install-binary similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/install-binary rename to cli/vendor/github.com/moby/moby/hack/make/install-binary diff --git a/fn/vendor/github.com/moby/moby/hack/make/install-binary-client b/cli/vendor/github.com/moby/moby/hack/make/install-binary-client similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/install-binary-client rename to cli/vendor/github.com/moby/moby/hack/make/install-binary-client diff --git a/fn/vendor/github.com/moby/moby/hack/make/install-binary-daemon b/cli/vendor/github.com/moby/moby/hack/make/install-binary-daemon similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/install-binary-daemon rename to cli/vendor/github.com/moby/moby/hack/make/install-binary-daemon diff --git a/fn/vendor/github.com/moby/moby/hack/make/install-script b/cli/vendor/github.com/moby/moby/hack/make/install-script similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/install-script rename to cli/vendor/github.com/moby/moby/hack/make/install-script diff --git a/fn/vendor/github.com/moby/moby/hack/make/release-deb b/cli/vendor/github.com/moby/moby/hack/make/release-deb similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/release-deb rename to cli/vendor/github.com/moby/moby/hack/make/release-deb diff --git a/fn/vendor/github.com/moby/moby/hack/make/release-rpm b/cli/vendor/github.com/moby/moby/hack/make/release-rpm similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/release-rpm rename to cli/vendor/github.com/moby/moby/hack/make/release-rpm diff --git a/fn/vendor/github.com/moby/moby/hack/make/run b/cli/vendor/github.com/moby/moby/hack/make/run similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/run rename to cli/vendor/github.com/moby/moby/hack/make/run diff --git a/fn/vendor/github.com/moby/moby/hack/make/sign-repos b/cli/vendor/github.com/moby/moby/hack/make/sign-repos similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/sign-repos rename to cli/vendor/github.com/moby/moby/hack/make/sign-repos diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-deb-install b/cli/vendor/github.com/moby/moby/hack/make/test-deb-install similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-deb-install rename to cli/vendor/github.com/moby/moby/hack/make/test-deb-install diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-docker-py b/cli/vendor/github.com/moby/moby/hack/make/test-docker-py similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-docker-py rename to cli/vendor/github.com/moby/moby/hack/make/test-docker-py diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-install-script b/cli/vendor/github.com/moby/moby/hack/make/test-install-script similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-install-script rename to cli/vendor/github.com/moby/moby/hack/make/test-install-script diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-integration-cli b/cli/vendor/github.com/moby/moby/hack/make/test-integration-cli similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-integration-cli rename to cli/vendor/github.com/moby/moby/hack/make/test-integration-cli diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-integration-shell b/cli/vendor/github.com/moby/moby/hack/make/test-integration-shell similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-integration-shell rename to cli/vendor/github.com/moby/moby/hack/make/test-integration-shell diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-old-apt-repo b/cli/vendor/github.com/moby/moby/hack/make/test-old-apt-repo similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-old-apt-repo rename to cli/vendor/github.com/moby/moby/hack/make/test-old-apt-repo diff --git a/fn/vendor/github.com/moby/moby/hack/make/test-unit b/cli/vendor/github.com/moby/moby/hack/make/test-unit similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/test-unit rename to cli/vendor/github.com/moby/moby/hack/make/test-unit diff --git a/fn/vendor/github.com/moby/moby/hack/make/tgz b/cli/vendor/github.com/moby/moby/hack/make/tgz similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/tgz rename to cli/vendor/github.com/moby/moby/hack/make/tgz diff --git a/fn/vendor/github.com/moby/moby/hack/make/ubuntu b/cli/vendor/github.com/moby/moby/hack/make/ubuntu similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/ubuntu rename to cli/vendor/github.com/moby/moby/hack/make/ubuntu diff --git a/fn/vendor/github.com/moby/moby/hack/make/update-apt-repo b/cli/vendor/github.com/moby/moby/hack/make/update-apt-repo similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/update-apt-repo rename to cli/vendor/github.com/moby/moby/hack/make/update-apt-repo diff --git a/fn/vendor/github.com/moby/moby/hack/make/win b/cli/vendor/github.com/moby/moby/hack/make/win similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/win rename to cli/vendor/github.com/moby/moby/hack/make/win diff --git a/fn/vendor/github.com/moby/moby/hack/make/yaml-docs-generator b/cli/vendor/github.com/moby/moby/hack/make/yaml-docs-generator similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/make/yaml-docs-generator rename to cli/vendor/github.com/moby/moby/hack/make/yaml-docs-generator diff --git a/fn/vendor/github.com/moby/moby/hack/release.sh b/cli/vendor/github.com/moby/moby/hack/release.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/release.sh rename to cli/vendor/github.com/moby/moby/hack/release.sh diff --git a/fn/vendor/github.com/moby/moby/hack/validate/.swagger-yamllint b/cli/vendor/github.com/moby/moby/hack/validate/.swagger-yamllint similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/.swagger-yamllint rename to cli/vendor/github.com/moby/moby/hack/validate/.swagger-yamllint diff --git a/fn/vendor/github.com/moby/moby/hack/validate/.validate b/cli/vendor/github.com/moby/moby/hack/validate/.validate similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/.validate rename to cli/vendor/github.com/moby/moby/hack/validate/.validate diff --git a/fn/vendor/github.com/moby/moby/hack/validate/all b/cli/vendor/github.com/moby/moby/hack/validate/all similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/all rename to cli/vendor/github.com/moby/moby/hack/validate/all diff --git a/fn/vendor/github.com/moby/moby/hack/validate/changelog-date-descending b/cli/vendor/github.com/moby/moby/hack/validate/changelog-date-descending similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/changelog-date-descending rename to cli/vendor/github.com/moby/moby/hack/validate/changelog-date-descending diff --git a/fn/vendor/github.com/moby/moby/hack/validate/changelog-well-formed b/cli/vendor/github.com/moby/moby/hack/validate/changelog-well-formed similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/changelog-well-formed rename to cli/vendor/github.com/moby/moby/hack/validate/changelog-well-formed diff --git a/fn/vendor/github.com/moby/moby/hack/validate/compose-bindata b/cli/vendor/github.com/moby/moby/hack/validate/compose-bindata similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/compose-bindata rename to cli/vendor/github.com/moby/moby/hack/validate/compose-bindata diff --git a/fn/vendor/github.com/moby/moby/hack/validate/dco b/cli/vendor/github.com/moby/moby/hack/validate/dco similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/dco rename to cli/vendor/github.com/moby/moby/hack/validate/dco diff --git a/fn/vendor/github.com/moby/moby/hack/validate/default b/cli/vendor/github.com/moby/moby/hack/validate/default similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/default rename to cli/vendor/github.com/moby/moby/hack/validate/default diff --git a/fn/vendor/github.com/moby/moby/hack/validate/default-seccomp b/cli/vendor/github.com/moby/moby/hack/validate/default-seccomp similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/default-seccomp rename to cli/vendor/github.com/moby/moby/hack/validate/default-seccomp diff --git a/fn/vendor/github.com/moby/moby/hack/validate/gofmt b/cli/vendor/github.com/moby/moby/hack/validate/gofmt similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/gofmt rename to cli/vendor/github.com/moby/moby/hack/validate/gofmt diff --git a/fn/vendor/github.com/moby/moby/hack/validate/lint b/cli/vendor/github.com/moby/moby/hack/validate/lint similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/lint rename to cli/vendor/github.com/moby/moby/hack/validate/lint diff --git a/fn/vendor/github.com/moby/moby/hack/validate/pkg-imports b/cli/vendor/github.com/moby/moby/hack/validate/pkg-imports similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/pkg-imports rename to cli/vendor/github.com/moby/moby/hack/validate/pkg-imports diff --git a/fn/vendor/github.com/moby/moby/hack/validate/swagger b/cli/vendor/github.com/moby/moby/hack/validate/swagger similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/swagger rename to cli/vendor/github.com/moby/moby/hack/validate/swagger diff --git a/fn/vendor/github.com/moby/moby/hack/validate/swagger-gen b/cli/vendor/github.com/moby/moby/hack/validate/swagger-gen similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/swagger-gen rename to cli/vendor/github.com/moby/moby/hack/validate/swagger-gen diff --git a/fn/vendor/github.com/moby/moby/hack/validate/test-imports b/cli/vendor/github.com/moby/moby/hack/validate/test-imports similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/test-imports rename to cli/vendor/github.com/moby/moby/hack/validate/test-imports diff --git a/fn/vendor/github.com/moby/moby/hack/validate/toml b/cli/vendor/github.com/moby/moby/hack/validate/toml similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/toml rename to cli/vendor/github.com/moby/moby/hack/validate/toml diff --git a/fn/vendor/github.com/moby/moby/hack/validate/vendor b/cli/vendor/github.com/moby/moby/hack/validate/vendor similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/vendor rename to cli/vendor/github.com/moby/moby/hack/validate/vendor diff --git a/fn/vendor/github.com/moby/moby/hack/validate/vet b/cli/vendor/github.com/moby/moby/hack/validate/vet similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/validate/vet rename to cli/vendor/github.com/moby/moby/hack/validate/vet diff --git a/fn/vendor/github.com/moby/moby/hack/vendor.sh b/cli/vendor/github.com/moby/moby/hack/vendor.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/hack/vendor.sh rename to cli/vendor/github.com/moby/moby/hack/vendor.sh diff --git a/fn/vendor/github.com/moby/moby/hooks/post_build b/cli/vendor/github.com/moby/moby/hooks/post_build similarity index 100% rename from fn/vendor/github.com/moby/moby/hooks/post_build rename to cli/vendor/github.com/moby/moby/hooks/post_build diff --git a/fn/vendor/github.com/moby/moby/image/cache/cache.go b/cli/vendor/github.com/moby/moby/image/cache/cache.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/cache/cache.go rename to cli/vendor/github.com/moby/moby/image/cache/cache.go diff --git a/fn/vendor/github.com/moby/moby/image/cache/compare.go b/cli/vendor/github.com/moby/moby/image/cache/compare.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/cache/compare.go rename to cli/vendor/github.com/moby/moby/image/cache/compare.go diff --git a/fn/vendor/github.com/moby/moby/image/cache/compare_test.go b/cli/vendor/github.com/moby/moby/image/cache/compare_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/cache/compare_test.go rename to cli/vendor/github.com/moby/moby/image/cache/compare_test.go diff --git a/fn/vendor/github.com/moby/moby/image/fs.go b/cli/vendor/github.com/moby/moby/image/fs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/fs.go rename to cli/vendor/github.com/moby/moby/image/fs.go diff --git a/fn/vendor/github.com/moby/moby/image/fs_test.go b/cli/vendor/github.com/moby/moby/image/fs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/fs_test.go rename to cli/vendor/github.com/moby/moby/image/fs_test.go diff --git a/fn/vendor/github.com/moby/moby/image/image.go b/cli/vendor/github.com/moby/moby/image/image.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/image.go rename to cli/vendor/github.com/moby/moby/image/image.go diff --git a/fn/vendor/github.com/moby/moby/image/image_test.go b/cli/vendor/github.com/moby/moby/image/image_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/image_test.go rename to cli/vendor/github.com/moby/moby/image/image_test.go diff --git a/fn/vendor/github.com/moby/moby/image/rootfs.go b/cli/vendor/github.com/moby/moby/image/rootfs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/rootfs.go rename to cli/vendor/github.com/moby/moby/image/rootfs.go diff --git a/fn/vendor/github.com/moby/moby/image/spec/v1.1.md b/cli/vendor/github.com/moby/moby/image/spec/v1.1.md similarity index 100% rename from fn/vendor/github.com/moby/moby/image/spec/v1.1.md rename to cli/vendor/github.com/moby/moby/image/spec/v1.1.md diff --git a/fn/vendor/github.com/moby/moby/image/spec/v1.2.md b/cli/vendor/github.com/moby/moby/image/spec/v1.2.md similarity index 100% rename from fn/vendor/github.com/moby/moby/image/spec/v1.2.md rename to cli/vendor/github.com/moby/moby/image/spec/v1.2.md diff --git a/fn/vendor/github.com/moby/moby/image/spec/v1.md b/cli/vendor/github.com/moby/moby/image/spec/v1.md similarity index 100% rename from fn/vendor/github.com/moby/moby/image/spec/v1.md rename to cli/vendor/github.com/moby/moby/image/spec/v1.md diff --git a/fn/vendor/github.com/moby/moby/image/store.go b/cli/vendor/github.com/moby/moby/image/store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/store.go rename to cli/vendor/github.com/moby/moby/image/store.go diff --git a/fn/vendor/github.com/moby/moby/image/store_test.go b/cli/vendor/github.com/moby/moby/image/store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/store_test.go rename to cli/vendor/github.com/moby/moby/image/store_test.go diff --git a/fn/vendor/github.com/moby/moby/image/tarexport/load.go b/cli/vendor/github.com/moby/moby/image/tarexport/load.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/tarexport/load.go rename to cli/vendor/github.com/moby/moby/image/tarexport/load.go diff --git a/fn/vendor/github.com/moby/moby/image/tarexport/save.go b/cli/vendor/github.com/moby/moby/image/tarexport/save.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/tarexport/save.go rename to cli/vendor/github.com/moby/moby/image/tarexport/save.go diff --git a/fn/vendor/github.com/moby/moby/image/tarexport/tarexport.go b/cli/vendor/github.com/moby/moby/image/tarexport/tarexport.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/tarexport/tarexport.go rename to cli/vendor/github.com/moby/moby/image/tarexport/tarexport.go diff --git a/fn/vendor/github.com/moby/moby/image/v1/imagev1.go b/cli/vendor/github.com/moby/moby/image/v1/imagev1.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/v1/imagev1.go rename to cli/vendor/github.com/moby/moby/image/v1/imagev1.go diff --git a/fn/vendor/github.com/moby/moby/image/v1/imagev1_test.go b/cli/vendor/github.com/moby/moby/image/v1/imagev1_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/image/v1/imagev1_test.go rename to cli/vendor/github.com/moby/moby/image/v1/imagev1_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/benchmark_test.go b/cli/vendor/github.com/moby/moby/integration-cli/benchmark_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/benchmark_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/benchmark_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/check_test.go b/cli/vendor/github.com/moby/moby/integration-cli/check_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/check_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/check_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/checker/checker.go b/cli/vendor/github.com/moby/moby/integration-cli/checker/checker.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/checker/checker.go rename to cli/vendor/github.com/moby/moby/integration-cli/checker/checker.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/cli/build/build.go b/cli/vendor/github.com/moby/moby/integration-cli/cli/build/build.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/cli/build/build.go rename to cli/vendor/github.com/moby/moby/integration-cli/cli/build/build.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/cli/cli.go b/cli/vendor/github.com/moby/moby/integration-cli/cli/cli.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/cli/cli.go rename to cli/vendor/github.com/moby/moby/integration-cli/cli/cli.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon.go b/cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon.go rename to cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon_swarm.go b/cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon_swarm.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon_swarm.go rename to cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon_swarm.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon_unix.go b/cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon_unix.go rename to cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon_unix.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon_windows.go b/cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/daemon/daemon_windows.go rename to cli/vendor/github.com/moby/moby/integration-cli/daemon/daemon_windows.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/daemon_swarm_hack_test.go b/cli/vendor/github.com/moby/moby/integration-cli/daemon_swarm_hack_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/daemon_swarm_hack_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/daemon_swarm_hack_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_attach_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_attach_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_attach_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_attach_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_auth_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_auth_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_auth_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_auth_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_build_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_build_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_build_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_build_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_containers_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_containers_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_containers_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_containers_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_create_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_create_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_create_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_events_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_events_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_events_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_events_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_exec_resize_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_exec_resize_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_exec_resize_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_exec_resize_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_exec_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_exec_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_exec_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_exec_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_images_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_images_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_images_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_images_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_info_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_info_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_info_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_info_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_inspect_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_logs_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_logs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_logs_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_logs_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_network_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_network_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_network_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_network_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_resize_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_resize_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_resize_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_resize_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_stats_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_stats_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_stats_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_stats_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_stats_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_stats_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_stats_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_stats_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_node_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_node_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_node_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_node_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_secret_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_secret_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_secret_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_secret_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_service_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_service_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_service_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_service_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_swarm_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_update_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_update_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_update_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_update_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_version_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_version_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_version_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_version_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_api_volumes_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_api_volumes_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_api_volumes_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_api_volumes_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_attach_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_plugin_v2_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_plugin_v2_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_plugin_v2_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_plugin_v2_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_authz_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_build_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_build_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_build_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_build_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_build_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_build_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_build_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_build_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_by_digest_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_by_digest_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_by_digest_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_by_digest_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_commit_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_commit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_commit_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_commit_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_config_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_config_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_config_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_config_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_from_container_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_from_container_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_from_container_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_from_container_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_to_container_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_utils.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_utils.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_cp_utils.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_create_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_create_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_create_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_create_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_create_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_create_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_create_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_plugins_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_plugins_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_plugins_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_plugins_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_daemon_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_diff_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_diff_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_diff_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_diff_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_events_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_events_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_events_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_events_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_events_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_events_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_events_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_events_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_exec_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_experimental_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_experimental_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_experimental_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_experimental_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_export_import_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_export_import_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_export_import_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_export_import_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_external_graphdriver_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_external_graphdriver_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_external_graphdriver_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_external_graphdriver_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_external_volume_driver_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_external_volume_driver_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_external_volume_driver_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_external_volume_driver_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_health_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_health_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_health_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_health_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_help_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_help_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_help_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_help_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_history_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_history_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_history_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_history_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_images_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_images_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_images_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_images_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_import_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_import_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_import_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_import_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_info_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_info_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_info_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_info_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_info_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_info_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_info_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_info_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_inspect_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_inspect_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_kill_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_kill_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_kill_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_kill_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_links_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_links_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_links_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_links_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_links_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_links_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_links_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_links_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_login_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_login_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_login_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_login_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_logout_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_logout_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_logout_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_logout_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_bench_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_bench_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_bench_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_bench_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_logs_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_nat_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_nat_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_nat_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_nat_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_netmode_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_netmode_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_netmode_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_netmode_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_network_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_network_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_network_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_network_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_oom_killed_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_oom_killed_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_oom_killed_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_oom_killed_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pause_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pause_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pause_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pause_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_logdriver_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_logdriver_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_logdriver_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_logdriver_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_plugins_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_port_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_port_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_port_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_port_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_proxy_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_proxy_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_proxy_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_proxy_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_prune_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_prune_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_prune_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_prune_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_ps_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_ps_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_ps_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_ps_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_local_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_local_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_local_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_local_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_trusted_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_trusted_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_trusted_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_pull_trusted_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_push_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_push_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_push_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_push_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_registry_user_agent_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_registry_user_agent_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_registry_user_agent_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_registry_user_agent_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_rename_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_rename_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_rename_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_rename_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_restart_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_restart_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_restart_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_restart_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_rm_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_rm_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_rm_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_rm_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_rmi_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_rmi_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_rmi_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_rmi_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_run_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_run_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_run_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_run_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_run_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_run_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_run_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_run_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_save_load_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_search_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_search_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_search_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_search_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_create_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_create_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_create_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_inspect_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_inspect_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_inspect_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_inspect_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_ls_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_ls_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_ls_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_secret_ls_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_create_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_create_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_create_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_create_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_health_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_health_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_health_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_health_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_logs_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_logs_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_logs_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_logs_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_scale_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_scale_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_scale_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_scale_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_update_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_service_update_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_service_update_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_sni_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_sni_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_sni_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_sni_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_stack_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_stack_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_stack_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_stack_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_start_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_start_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_start_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_start_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_stats_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_stats_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_stats_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_stats_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_stop_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_stop_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_stop_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_stop_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_swarm_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_tag_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_tag_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_tag_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_tag_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_top_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_top_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_top_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_top_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_update_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_update_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_update_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_update_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_update_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_update_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_update_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_update_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_userns_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_userns_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_userns_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_userns_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_v2_only_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_v2_only_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_v2_only_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_v2_only_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_version_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_version_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_version_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_version_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_volume_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_volume_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_volume_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_volume_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_cli_wait_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_cli_wait_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_cli_wait_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_cli_wait_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_deprecated_api_v124_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_experimental_network_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_experimental_network_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_experimental_network_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_experimental_network_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_hub_pull_suite_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_hub_pull_suite_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_hub_pull_suite_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_hub_pull_suite_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/docker_utils_test.go b/cli/vendor/github.com/moby/moby/integration-cli/docker_utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/docker_utils_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/docker_utils_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/environment/clean.go b/cli/vendor/github.com/moby/moby/integration-cli/environment/clean.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/environment/clean.go rename to cli/vendor/github.com/moby/moby/integration-cli/environment/clean.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/environment/environment.go b/cli/vendor/github.com/moby/moby/integration-cli/environment/environment.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/environment/environment.go rename to cli/vendor/github.com/moby/moby/integration-cli/environment/environment.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/environment/protect.go b/cli/vendor/github.com/moby/moby/integration-cli/environment/protect.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/environment/protect.go rename to cli/vendor/github.com/moby/moby/integration-cli/environment/protect.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/events_utils_test.go b/cli/vendor/github.com/moby/moby/integration-cli/events_utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/events_utils_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/events_utils_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/auth/docker-credential-shell-test b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/auth/docker-credential-shell-test similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/auth/docker-credential-shell-test rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/auth/docker-credential-shell-test diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/credentialspecs/valid.json b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/credentialspecs/valid.json similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/credentialspecs/valid.json rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/credentialspecs/valid.json diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/default.yaml b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/default.yaml similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/default.yaml rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/default.yaml diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/remove.yaml b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/remove.yaml similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/remove.yaml rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/remove.yaml diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/secrets.yaml b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/secrets.yaml similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/secrets.yaml rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/deploy/secrets.yaml diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/load/emptyLayer.tar b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/load/emptyLayer.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/load/emptyLayer.tar rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/load/emptyLayer.tar diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/load/frozen.go b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/load/frozen.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/load/frozen.go rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/load/frozen.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.crt b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.crt similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.crt rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.crt diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.key b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.key similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.key rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey1.key diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.crt b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.crt similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.crt rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.crt diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.key b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.key similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.key rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey2.key diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.crt b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.crt similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.crt rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.crt diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.key b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.key similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.key rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey3.key diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.crt b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.crt similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.crt rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.crt diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.key b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.key similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.key rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/delgkey4.key diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/gen.sh b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/gen.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/gen.sh rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/gen.sh diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.cert b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.cert similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.cert rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.cert diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.key b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.key similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.key rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/notary/localhost.key diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures/secrets/default b/cli/vendor/github.com/moby/moby/integration-cli/fixtures/secrets/default similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures/secrets/default rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures/secrets/default diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures_linux_daemon_test.go b/cli/vendor/github.com/moby/moby/integration-cli/fixtures_linux_daemon_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures_linux_daemon_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures_linux_daemon_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/fixtures_test.go b/cli/vendor/github.com/moby/moby/integration-cli/fixtures_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/fixtures_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/fixtures_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/registry/registry.go b/cli/vendor/github.com/moby/moby/integration-cli/registry/registry.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/registry/registry.go rename to cli/vendor/github.com/moby/moby/integration-cli/registry/registry.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/registry/registry_mock.go b/cli/vendor/github.com/moby/moby/integration-cli/registry/registry_mock.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/registry/registry_mock.go rename to cli/vendor/github.com/moby/moby/integration-cli/registry/registry_mock.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/registry/requirement.go b/cli/vendor/github.com/moby/moby/integration-cli/registry/requirement.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/registry/requirement.go rename to cli/vendor/github.com/moby/moby/integration-cli/registry/requirement.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/request/npipe.go b/cli/vendor/github.com/moby/moby/integration-cli/request/npipe.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/request/npipe.go rename to cli/vendor/github.com/moby/moby/integration-cli/request/npipe.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/request/npipe_windows.go b/cli/vendor/github.com/moby/moby/integration-cli/request/npipe_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/request/npipe_windows.go rename to cli/vendor/github.com/moby/moby/integration-cli/request/npipe_windows.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/request/request.go b/cli/vendor/github.com/moby/moby/integration-cli/request/request.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/request/request.go rename to cli/vendor/github.com/moby/moby/integration-cli/request/request.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/requirement/requirement.go b/cli/vendor/github.com/moby/moby/integration-cli/requirement/requirement.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/requirement/requirement.go rename to cli/vendor/github.com/moby/moby/integration-cli/requirement/requirement.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/requirements_test.go b/cli/vendor/github.com/moby/moby/integration-cli/requirements_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/requirements_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/requirements_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/requirements_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/requirements_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/requirements_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/requirements_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_exec_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_exec_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_exec_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_exec_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_noexec_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_noexec_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_noexec_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_noexec_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_noseccomp_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_noseccomp_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_noseccomp_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_noseccomp_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_seccomp_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_seccomp_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_seccomp_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_seccomp_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_unix_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_unix_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/test_vars_windows_test.go b/cli/vendor/github.com/moby/moby/integration-cli/test_vars_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/test_vars_windows_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/test_vars_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/trust_server_test.go b/cli/vendor/github.com/moby/moby/integration-cli/trust_server_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/trust_server_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/trust_server_test.go diff --git a/fn/vendor/github.com/moby/moby/integration-cli/utils_test.go b/cli/vendor/github.com/moby/moby/integration-cli/utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/integration-cli/utils_test.go rename to cli/vendor/github.com/moby/moby/integration-cli/utils_test.go diff --git a/fn/vendor/github.com/moby/moby/keys/launchpad-ppa-zfs.asc b/cli/vendor/github.com/moby/moby/keys/launchpad-ppa-zfs.asc similarity index 100% rename from fn/vendor/github.com/moby/moby/keys/launchpad-ppa-zfs.asc rename to cli/vendor/github.com/moby/moby/keys/launchpad-ppa-zfs.asc diff --git a/fn/vendor/github.com/moby/moby/layer/empty.go b/cli/vendor/github.com/moby/moby/layer/empty.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/empty.go rename to cli/vendor/github.com/moby/moby/layer/empty.go diff --git a/fn/vendor/github.com/moby/moby/layer/empty_test.go b/cli/vendor/github.com/moby/moby/layer/empty_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/empty_test.go rename to cli/vendor/github.com/moby/moby/layer/empty_test.go diff --git a/fn/vendor/github.com/moby/moby/layer/filestore.go b/cli/vendor/github.com/moby/moby/layer/filestore.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/filestore.go rename to cli/vendor/github.com/moby/moby/layer/filestore.go diff --git a/fn/vendor/github.com/moby/moby/layer/filestore_test.go b/cli/vendor/github.com/moby/moby/layer/filestore_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/filestore_test.go rename to cli/vendor/github.com/moby/moby/layer/filestore_test.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer.go b/cli/vendor/github.com/moby/moby/layer/layer.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer.go rename to cli/vendor/github.com/moby/moby/layer/layer.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer_store.go b/cli/vendor/github.com/moby/moby/layer/layer_store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer_store.go rename to cli/vendor/github.com/moby/moby/layer/layer_store.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer_store_windows.go b/cli/vendor/github.com/moby/moby/layer/layer_store_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer_store_windows.go rename to cli/vendor/github.com/moby/moby/layer/layer_store_windows.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer_test.go b/cli/vendor/github.com/moby/moby/layer/layer_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer_test.go rename to cli/vendor/github.com/moby/moby/layer/layer_test.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer_unix.go b/cli/vendor/github.com/moby/moby/layer/layer_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer_unix.go rename to cli/vendor/github.com/moby/moby/layer/layer_unix.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer_unix_test.go b/cli/vendor/github.com/moby/moby/layer/layer_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer_unix_test.go rename to cli/vendor/github.com/moby/moby/layer/layer_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/layer/layer_windows.go b/cli/vendor/github.com/moby/moby/layer/layer_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/layer_windows.go rename to cli/vendor/github.com/moby/moby/layer/layer_windows.go diff --git a/fn/vendor/github.com/moby/moby/layer/migration.go b/cli/vendor/github.com/moby/moby/layer/migration.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/migration.go rename to cli/vendor/github.com/moby/moby/layer/migration.go diff --git a/fn/vendor/github.com/moby/moby/layer/migration_test.go b/cli/vendor/github.com/moby/moby/layer/migration_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/migration_test.go rename to cli/vendor/github.com/moby/moby/layer/migration_test.go diff --git a/fn/vendor/github.com/moby/moby/layer/mount_test.go b/cli/vendor/github.com/moby/moby/layer/mount_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/mount_test.go rename to cli/vendor/github.com/moby/moby/layer/mount_test.go diff --git a/fn/vendor/github.com/moby/moby/layer/mounted_layer.go b/cli/vendor/github.com/moby/moby/layer/mounted_layer.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/mounted_layer.go rename to cli/vendor/github.com/moby/moby/layer/mounted_layer.go diff --git a/fn/vendor/github.com/moby/moby/layer/ro_layer.go b/cli/vendor/github.com/moby/moby/layer/ro_layer.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/ro_layer.go rename to cli/vendor/github.com/moby/moby/layer/ro_layer.go diff --git a/fn/vendor/github.com/moby/moby/layer/ro_layer_windows.go b/cli/vendor/github.com/moby/moby/layer/ro_layer_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/layer/ro_layer_windows.go rename to cli/vendor/github.com/moby/moby/layer/ro_layer_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/client.go b/cli/vendor/github.com/moby/moby/libcontainerd/client.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/client.go rename to cli/vendor/github.com/moby/moby/libcontainerd/client.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/client_linux.go b/cli/vendor/github.com/moby/moby/libcontainerd/client_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/client_linux.go rename to cli/vendor/github.com/moby/moby/libcontainerd/client_linux.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/client_solaris.go b/cli/vendor/github.com/moby/moby/libcontainerd/client_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/client_solaris.go rename to cli/vendor/github.com/moby/moby/libcontainerd/client_solaris.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/client_unix.go b/cli/vendor/github.com/moby/moby/libcontainerd/client_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/client_unix.go rename to cli/vendor/github.com/moby/moby/libcontainerd/client_unix.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/client_windows.go b/cli/vendor/github.com/moby/moby/libcontainerd/client_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/client_windows.go rename to cli/vendor/github.com/moby/moby/libcontainerd/client_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/container.go b/cli/vendor/github.com/moby/moby/libcontainerd/container.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/container.go rename to cli/vendor/github.com/moby/moby/libcontainerd/container.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/container_unix.go b/cli/vendor/github.com/moby/moby/libcontainerd/container_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/container_unix.go rename to cli/vendor/github.com/moby/moby/libcontainerd/container_unix.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/container_windows.go b/cli/vendor/github.com/moby/moby/libcontainerd/container_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/container_windows.go rename to cli/vendor/github.com/moby/moby/libcontainerd/container_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/oom_linux.go b/cli/vendor/github.com/moby/moby/libcontainerd/oom_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/oom_linux.go rename to cli/vendor/github.com/moby/moby/libcontainerd/oom_linux.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/oom_solaris.go b/cli/vendor/github.com/moby/moby/libcontainerd/oom_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/oom_solaris.go rename to cli/vendor/github.com/moby/moby/libcontainerd/oom_solaris.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/pausemonitor_unix.go b/cli/vendor/github.com/moby/moby/libcontainerd/pausemonitor_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/pausemonitor_unix.go rename to cli/vendor/github.com/moby/moby/libcontainerd/pausemonitor_unix.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/process.go b/cli/vendor/github.com/moby/moby/libcontainerd/process.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/process.go rename to cli/vendor/github.com/moby/moby/libcontainerd/process.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/process_unix.go b/cli/vendor/github.com/moby/moby/libcontainerd/process_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/process_unix.go rename to cli/vendor/github.com/moby/moby/libcontainerd/process_unix.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/process_windows.go b/cli/vendor/github.com/moby/moby/libcontainerd/process_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/process_windows.go rename to cli/vendor/github.com/moby/moby/libcontainerd/process_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/queue_unix.go b/cli/vendor/github.com/moby/moby/libcontainerd/queue_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/queue_unix.go rename to cli/vendor/github.com/moby/moby/libcontainerd/queue_unix.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/remote.go b/cli/vendor/github.com/moby/moby/libcontainerd/remote.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/remote.go rename to cli/vendor/github.com/moby/moby/libcontainerd/remote.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/remote_unix.go b/cli/vendor/github.com/moby/moby/libcontainerd/remote_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/remote_unix.go rename to cli/vendor/github.com/moby/moby/libcontainerd/remote_unix.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/remote_windows.go b/cli/vendor/github.com/moby/moby/libcontainerd/remote_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/remote_windows.go rename to cli/vendor/github.com/moby/moby/libcontainerd/remote_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/types.go b/cli/vendor/github.com/moby/moby/libcontainerd/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/types.go rename to cli/vendor/github.com/moby/moby/libcontainerd/types.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/types_linux.go b/cli/vendor/github.com/moby/moby/libcontainerd/types_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/types_linux.go rename to cli/vendor/github.com/moby/moby/libcontainerd/types_linux.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/types_solaris.go b/cli/vendor/github.com/moby/moby/libcontainerd/types_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/types_solaris.go rename to cli/vendor/github.com/moby/moby/libcontainerd/types_solaris.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/types_windows.go b/cli/vendor/github.com/moby/moby/libcontainerd/types_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/types_windows.go rename to cli/vendor/github.com/moby/moby/libcontainerd/types_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/utils_linux.go b/cli/vendor/github.com/moby/moby/libcontainerd/utils_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/utils_linux.go rename to cli/vendor/github.com/moby/moby/libcontainerd/utils_linux.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/utils_solaris.go b/cli/vendor/github.com/moby/moby/libcontainerd/utils_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/utils_solaris.go rename to cli/vendor/github.com/moby/moby/libcontainerd/utils_solaris.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/utils_windows.go b/cli/vendor/github.com/moby/moby/libcontainerd/utils_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/utils_windows.go rename to cli/vendor/github.com/moby/moby/libcontainerd/utils_windows.go diff --git a/fn/vendor/github.com/moby/moby/libcontainerd/utils_windows_test.go b/cli/vendor/github.com/moby/moby/libcontainerd/utils_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/libcontainerd/utils_windows_test.go rename to cli/vendor/github.com/moby/moby/libcontainerd/utils_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/man/Dockerfile b/cli/vendor/github.com/moby/moby/man/Dockerfile similarity index 100% rename from fn/vendor/github.com/moby/moby/man/Dockerfile rename to cli/vendor/github.com/moby/moby/man/Dockerfile diff --git a/fn/vendor/github.com/moby/moby/man/Dockerfile.5.md b/cli/vendor/github.com/moby/moby/man/Dockerfile.5.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/Dockerfile.5.md rename to cli/vendor/github.com/moby/moby/man/Dockerfile.5.md diff --git a/fn/vendor/github.com/moby/moby/man/Dockerfile.aarch64 b/cli/vendor/github.com/moby/moby/man/Dockerfile.aarch64 similarity index 100% rename from fn/vendor/github.com/moby/moby/man/Dockerfile.aarch64 rename to cli/vendor/github.com/moby/moby/man/Dockerfile.aarch64 diff --git a/fn/vendor/github.com/moby/moby/man/Dockerfile.armhf b/cli/vendor/github.com/moby/moby/man/Dockerfile.armhf similarity index 100% rename from fn/vendor/github.com/moby/moby/man/Dockerfile.armhf rename to cli/vendor/github.com/moby/moby/man/Dockerfile.armhf diff --git a/fn/vendor/github.com/moby/moby/man/Dockerfile.ppc64le b/cli/vendor/github.com/moby/moby/man/Dockerfile.ppc64le similarity index 100% rename from fn/vendor/github.com/moby/moby/man/Dockerfile.ppc64le rename to cli/vendor/github.com/moby/moby/man/Dockerfile.ppc64le diff --git a/fn/vendor/github.com/moby/moby/man/Dockerfile.s390x b/cli/vendor/github.com/moby/moby/man/Dockerfile.s390x similarity index 100% rename from fn/vendor/github.com/moby/moby/man/Dockerfile.s390x rename to cli/vendor/github.com/moby/moby/man/Dockerfile.s390x diff --git a/fn/vendor/github.com/moby/moby/man/README.md b/cli/vendor/github.com/moby/moby/man/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/README.md rename to cli/vendor/github.com/moby/moby/man/README.md diff --git a/fn/vendor/github.com/moby/moby/man/docker-build.1.md b/cli/vendor/github.com/moby/moby/man/docker-build.1.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/docker-build.1.md rename to cli/vendor/github.com/moby/moby/man/docker-build.1.md diff --git a/fn/vendor/github.com/moby/moby/man/docker-config-json.5.md b/cli/vendor/github.com/moby/moby/man/docker-config-json.5.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/docker-config-json.5.md rename to cli/vendor/github.com/moby/moby/man/docker-config-json.5.md diff --git a/fn/vendor/github.com/moby/moby/man/docker-run.1.md b/cli/vendor/github.com/moby/moby/man/docker-run.1.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/docker-run.1.md rename to cli/vendor/github.com/moby/moby/man/docker-run.1.md diff --git a/fn/vendor/github.com/moby/moby/man/docker.1.md b/cli/vendor/github.com/moby/moby/man/docker.1.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/docker.1.md rename to cli/vendor/github.com/moby/moby/man/docker.1.md diff --git a/fn/vendor/github.com/moby/moby/man/dockerd.8.md b/cli/vendor/github.com/moby/moby/man/dockerd.8.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/dockerd.8.md rename to cli/vendor/github.com/moby/moby/man/dockerd.8.md diff --git a/fn/vendor/github.com/moby/moby/man/generate.go b/cli/vendor/github.com/moby/moby/man/generate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/man/generate.go rename to cli/vendor/github.com/moby/moby/man/generate.go diff --git a/fn/vendor/github.com/moby/moby/man/generate.sh b/cli/vendor/github.com/moby/moby/man/generate.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/man/generate.sh rename to cli/vendor/github.com/moby/moby/man/generate.sh diff --git a/fn/vendor/github.com/moby/moby/man/glide.lock b/cli/vendor/github.com/moby/moby/man/glide.lock similarity index 100% rename from fn/vendor/github.com/moby/moby/man/glide.lock rename to cli/vendor/github.com/moby/moby/man/glide.lock diff --git a/fn/vendor/github.com/moby/moby/man/glide.yaml b/cli/vendor/github.com/moby/moby/man/glide.yaml similarity index 100% rename from fn/vendor/github.com/moby/moby/man/glide.yaml rename to cli/vendor/github.com/moby/moby/man/glide.yaml diff --git a/fn/vendor/github.com/moby/moby/man/md2man-all.sh b/cli/vendor/github.com/moby/moby/man/md2man-all.sh similarity index 100% rename from fn/vendor/github.com/moby/moby/man/md2man-all.sh rename to cli/vendor/github.com/moby/moby/man/md2man-all.sh diff --git a/fn/vendor/github.com/moby/moby/man/src/attach.md b/cli/vendor/github.com/moby/moby/man/src/attach.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/attach.md rename to cli/vendor/github.com/moby/moby/man/src/attach.md diff --git a/fn/vendor/github.com/moby/moby/man/src/commit.md b/cli/vendor/github.com/moby/moby/man/src/commit.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/commit.md rename to cli/vendor/github.com/moby/moby/man/src/commit.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/attach.md b/cli/vendor/github.com/moby/moby/man/src/container/attach.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/attach.md rename to cli/vendor/github.com/moby/moby/man/src/container/attach.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/commit.md b/cli/vendor/github.com/moby/moby/man/src/container/commit.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/commit.md rename to cli/vendor/github.com/moby/moby/man/src/container/commit.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/cp.md b/cli/vendor/github.com/moby/moby/man/src/container/cp.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/cp.md rename to cli/vendor/github.com/moby/moby/man/src/container/cp.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/create-example.md b/cli/vendor/github.com/moby/moby/man/src/container/create-example.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/create-example.md rename to cli/vendor/github.com/moby/moby/man/src/container/create-example.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/create.md b/cli/vendor/github.com/moby/moby/man/src/container/create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/create.md rename to cli/vendor/github.com/moby/moby/man/src/container/create.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/diff.md b/cli/vendor/github.com/moby/moby/man/src/container/diff.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/diff.md rename to cli/vendor/github.com/moby/moby/man/src/container/diff.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/exec.md b/cli/vendor/github.com/moby/moby/man/src/container/exec.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/exec.md rename to cli/vendor/github.com/moby/moby/man/src/container/exec.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/export.md b/cli/vendor/github.com/moby/moby/man/src/container/export.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/export.md rename to cli/vendor/github.com/moby/moby/man/src/container/export.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/kill.md b/cli/vendor/github.com/moby/moby/man/src/container/kill.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/kill.md rename to cli/vendor/github.com/moby/moby/man/src/container/kill.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/logs.md b/cli/vendor/github.com/moby/moby/man/src/container/logs.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/logs.md rename to cli/vendor/github.com/moby/moby/man/src/container/logs.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/ls.md b/cli/vendor/github.com/moby/moby/man/src/container/ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/ls.md rename to cli/vendor/github.com/moby/moby/man/src/container/ls.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/pause.md b/cli/vendor/github.com/moby/moby/man/src/container/pause.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/pause.md rename to cli/vendor/github.com/moby/moby/man/src/container/pause.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/port.md b/cli/vendor/github.com/moby/moby/man/src/container/port.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/port.md rename to cli/vendor/github.com/moby/moby/man/src/container/port.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/rename.md b/cli/vendor/github.com/moby/moby/man/src/container/rename.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/rename.md rename to cli/vendor/github.com/moby/moby/man/src/container/rename.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/restart.md b/cli/vendor/github.com/moby/moby/man/src/container/restart.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/restart.md rename to cli/vendor/github.com/moby/moby/man/src/container/restart.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/rm.md b/cli/vendor/github.com/moby/moby/man/src/container/rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/rm.md rename to cli/vendor/github.com/moby/moby/man/src/container/rm.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/run.md b/cli/vendor/github.com/moby/moby/man/src/container/run.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/run.md rename to cli/vendor/github.com/moby/moby/man/src/container/run.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/start.md b/cli/vendor/github.com/moby/moby/man/src/container/start.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/start.md rename to cli/vendor/github.com/moby/moby/man/src/container/start.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/stats.md b/cli/vendor/github.com/moby/moby/man/src/container/stats.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/stats.md rename to cli/vendor/github.com/moby/moby/man/src/container/stats.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/stop.md b/cli/vendor/github.com/moby/moby/man/src/container/stop.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/stop.md rename to cli/vendor/github.com/moby/moby/man/src/container/stop.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/top.md b/cli/vendor/github.com/moby/moby/man/src/container/top.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/top.md rename to cli/vendor/github.com/moby/moby/man/src/container/top.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/unpause.md b/cli/vendor/github.com/moby/moby/man/src/container/unpause.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/unpause.md rename to cli/vendor/github.com/moby/moby/man/src/container/unpause.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/update.md b/cli/vendor/github.com/moby/moby/man/src/container/update.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/update.md rename to cli/vendor/github.com/moby/moby/man/src/container/update.md diff --git a/fn/vendor/github.com/moby/moby/man/src/container/wait.md b/cli/vendor/github.com/moby/moby/man/src/container/wait.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/container/wait.md rename to cli/vendor/github.com/moby/moby/man/src/container/wait.md diff --git a/fn/vendor/github.com/moby/moby/man/src/cp.md b/cli/vendor/github.com/moby/moby/man/src/cp.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/cp.md rename to cli/vendor/github.com/moby/moby/man/src/cp.md diff --git a/fn/vendor/github.com/moby/moby/man/src/create.md b/cli/vendor/github.com/moby/moby/man/src/create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/create.md rename to cli/vendor/github.com/moby/moby/man/src/create.md diff --git a/fn/vendor/github.com/moby/moby/man/src/diff.md b/cli/vendor/github.com/moby/moby/man/src/diff.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/diff.md rename to cli/vendor/github.com/moby/moby/man/src/diff.md diff --git a/fn/vendor/github.com/moby/moby/man/src/events.md b/cli/vendor/github.com/moby/moby/man/src/events.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/events.md rename to cli/vendor/github.com/moby/moby/man/src/events.md diff --git a/fn/vendor/github.com/moby/moby/man/src/exec.md b/cli/vendor/github.com/moby/moby/man/src/exec.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/exec.md rename to cli/vendor/github.com/moby/moby/man/src/exec.md diff --git a/fn/vendor/github.com/moby/moby/man/src/export.md b/cli/vendor/github.com/moby/moby/man/src/export.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/export.md rename to cli/vendor/github.com/moby/moby/man/src/export.md diff --git a/fn/vendor/github.com/moby/moby/man/src/history.md b/cli/vendor/github.com/moby/moby/man/src/history.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/history.md rename to cli/vendor/github.com/moby/moby/man/src/history.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/build.md b/cli/vendor/github.com/moby/moby/man/src/image/build.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/build.md rename to cli/vendor/github.com/moby/moby/man/src/image/build.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/history.md b/cli/vendor/github.com/moby/moby/man/src/image/history.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/history.md rename to cli/vendor/github.com/moby/moby/man/src/image/history.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/import.md b/cli/vendor/github.com/moby/moby/man/src/image/import.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/import.md rename to cli/vendor/github.com/moby/moby/man/src/image/import.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/load.md b/cli/vendor/github.com/moby/moby/man/src/image/load.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/load.md rename to cli/vendor/github.com/moby/moby/man/src/image/load.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/ls.md b/cli/vendor/github.com/moby/moby/man/src/image/ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/ls.md rename to cli/vendor/github.com/moby/moby/man/src/image/ls.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/pull.md b/cli/vendor/github.com/moby/moby/man/src/image/pull.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/pull.md rename to cli/vendor/github.com/moby/moby/man/src/image/pull.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/push.md b/cli/vendor/github.com/moby/moby/man/src/image/push.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/push.md rename to cli/vendor/github.com/moby/moby/man/src/image/push.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/rm.md b/cli/vendor/github.com/moby/moby/man/src/image/rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/rm.md rename to cli/vendor/github.com/moby/moby/man/src/image/rm.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/save.md b/cli/vendor/github.com/moby/moby/man/src/image/save.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/save.md rename to cli/vendor/github.com/moby/moby/man/src/image/save.md diff --git a/fn/vendor/github.com/moby/moby/man/src/image/tag.md b/cli/vendor/github.com/moby/moby/man/src/image/tag.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/image/tag.md rename to cli/vendor/github.com/moby/moby/man/src/image/tag.md diff --git a/fn/vendor/github.com/moby/moby/man/src/images.md b/cli/vendor/github.com/moby/moby/man/src/images.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/images.md rename to cli/vendor/github.com/moby/moby/man/src/images.md diff --git a/fn/vendor/github.com/moby/moby/man/src/import.md b/cli/vendor/github.com/moby/moby/man/src/import.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/import.md rename to cli/vendor/github.com/moby/moby/man/src/import.md diff --git a/fn/vendor/github.com/moby/moby/man/src/info.md b/cli/vendor/github.com/moby/moby/man/src/info.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/info.md rename to cli/vendor/github.com/moby/moby/man/src/info.md diff --git a/fn/vendor/github.com/moby/moby/man/src/inspect.md b/cli/vendor/github.com/moby/moby/man/src/inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/inspect.md rename to cli/vendor/github.com/moby/moby/man/src/inspect.md diff --git a/fn/vendor/github.com/moby/moby/man/src/kill.md b/cli/vendor/github.com/moby/moby/man/src/kill.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/kill.md rename to cli/vendor/github.com/moby/moby/man/src/kill.md diff --git a/fn/vendor/github.com/moby/moby/man/src/load.md b/cli/vendor/github.com/moby/moby/man/src/load.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/load.md rename to cli/vendor/github.com/moby/moby/man/src/load.md diff --git a/fn/vendor/github.com/moby/moby/man/src/login.md b/cli/vendor/github.com/moby/moby/man/src/login.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/login.md rename to cli/vendor/github.com/moby/moby/man/src/login.md diff --git a/fn/vendor/github.com/moby/moby/man/src/logout.md b/cli/vendor/github.com/moby/moby/man/src/logout.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/logout.md rename to cli/vendor/github.com/moby/moby/man/src/logout.md diff --git a/fn/vendor/github.com/moby/moby/man/src/logs.md b/cli/vendor/github.com/moby/moby/man/src/logs.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/logs.md rename to cli/vendor/github.com/moby/moby/man/src/logs.md diff --git a/fn/vendor/github.com/moby/moby/man/src/network/connect.md b/cli/vendor/github.com/moby/moby/man/src/network/connect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/network/connect.md rename to cli/vendor/github.com/moby/moby/man/src/network/connect.md diff --git a/fn/vendor/github.com/moby/moby/man/src/network/create.md b/cli/vendor/github.com/moby/moby/man/src/network/create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/network/create.md rename to cli/vendor/github.com/moby/moby/man/src/network/create.md diff --git a/fn/vendor/github.com/moby/moby/man/src/network/disconnect.md b/cli/vendor/github.com/moby/moby/man/src/network/disconnect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/network/disconnect.md rename to cli/vendor/github.com/moby/moby/man/src/network/disconnect.md diff --git a/fn/vendor/github.com/moby/moby/man/src/network/inspect.md b/cli/vendor/github.com/moby/moby/man/src/network/inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/network/inspect.md rename to cli/vendor/github.com/moby/moby/man/src/network/inspect.md diff --git a/fn/vendor/github.com/moby/moby/man/src/network/ls.md b/cli/vendor/github.com/moby/moby/man/src/network/ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/network/ls.md rename to cli/vendor/github.com/moby/moby/man/src/network/ls.md diff --git a/fn/vendor/github.com/moby/moby/man/src/network/rm.md b/cli/vendor/github.com/moby/moby/man/src/network/rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/network/rm.md rename to cli/vendor/github.com/moby/moby/man/src/network/rm.md diff --git a/fn/vendor/github.com/moby/moby/man/src/pause.md b/cli/vendor/github.com/moby/moby/man/src/pause.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/pause.md rename to cli/vendor/github.com/moby/moby/man/src/pause.md diff --git a/fn/vendor/github.com/moby/moby/man/src/plugin/ls.md b/cli/vendor/github.com/moby/moby/man/src/plugin/ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/plugin/ls.md rename to cli/vendor/github.com/moby/moby/man/src/plugin/ls.md diff --git a/fn/vendor/github.com/moby/moby/man/src/port.md b/cli/vendor/github.com/moby/moby/man/src/port.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/port.md rename to cli/vendor/github.com/moby/moby/man/src/port.md diff --git a/fn/vendor/github.com/moby/moby/man/src/ps.md b/cli/vendor/github.com/moby/moby/man/src/ps.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/ps.md rename to cli/vendor/github.com/moby/moby/man/src/ps.md diff --git a/fn/vendor/github.com/moby/moby/man/src/pull.md b/cli/vendor/github.com/moby/moby/man/src/pull.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/pull.md rename to cli/vendor/github.com/moby/moby/man/src/pull.md diff --git a/fn/vendor/github.com/moby/moby/man/src/push.md b/cli/vendor/github.com/moby/moby/man/src/push.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/push.md rename to cli/vendor/github.com/moby/moby/man/src/push.md diff --git a/fn/vendor/github.com/moby/moby/man/src/rename.md b/cli/vendor/github.com/moby/moby/man/src/rename.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/rename.md rename to cli/vendor/github.com/moby/moby/man/src/rename.md diff --git a/fn/vendor/github.com/moby/moby/man/src/restart.md b/cli/vendor/github.com/moby/moby/man/src/restart.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/restart.md rename to cli/vendor/github.com/moby/moby/man/src/restart.md diff --git a/fn/vendor/github.com/moby/moby/man/src/rm.md b/cli/vendor/github.com/moby/moby/man/src/rm.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/rm.md rename to cli/vendor/github.com/moby/moby/man/src/rm.md diff --git a/fn/vendor/github.com/moby/moby/man/src/rmi.md b/cli/vendor/github.com/moby/moby/man/src/rmi.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/rmi.md rename to cli/vendor/github.com/moby/moby/man/src/rmi.md diff --git a/fn/vendor/github.com/moby/moby/man/src/save.md b/cli/vendor/github.com/moby/moby/man/src/save.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/save.md rename to cli/vendor/github.com/moby/moby/man/src/save.md diff --git a/fn/vendor/github.com/moby/moby/man/src/search.md b/cli/vendor/github.com/moby/moby/man/src/search.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/search.md rename to cli/vendor/github.com/moby/moby/man/src/search.md diff --git a/fn/vendor/github.com/moby/moby/man/src/start.md b/cli/vendor/github.com/moby/moby/man/src/start.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/start.md rename to cli/vendor/github.com/moby/moby/man/src/start.md diff --git a/fn/vendor/github.com/moby/moby/man/src/stats.md b/cli/vendor/github.com/moby/moby/man/src/stats.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/stats.md rename to cli/vendor/github.com/moby/moby/man/src/stats.md diff --git a/fn/vendor/github.com/moby/moby/man/src/stop.md b/cli/vendor/github.com/moby/moby/man/src/stop.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/stop.md rename to cli/vendor/github.com/moby/moby/man/src/stop.md diff --git a/fn/vendor/github.com/moby/moby/man/src/system/events.md b/cli/vendor/github.com/moby/moby/man/src/system/events.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/system/events.md rename to cli/vendor/github.com/moby/moby/man/src/system/events.md diff --git a/fn/vendor/github.com/moby/moby/man/src/system/info.md b/cli/vendor/github.com/moby/moby/man/src/system/info.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/system/info.md rename to cli/vendor/github.com/moby/moby/man/src/system/info.md diff --git a/fn/vendor/github.com/moby/moby/man/src/tag.md b/cli/vendor/github.com/moby/moby/man/src/tag.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/tag.md rename to cli/vendor/github.com/moby/moby/man/src/tag.md diff --git a/fn/vendor/github.com/moby/moby/man/src/top.md b/cli/vendor/github.com/moby/moby/man/src/top.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/top.md rename to cli/vendor/github.com/moby/moby/man/src/top.md diff --git a/fn/vendor/github.com/moby/moby/man/src/unpause.md b/cli/vendor/github.com/moby/moby/man/src/unpause.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/unpause.md rename to cli/vendor/github.com/moby/moby/man/src/unpause.md diff --git a/fn/vendor/github.com/moby/moby/man/src/update.md b/cli/vendor/github.com/moby/moby/man/src/update.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/update.md rename to cli/vendor/github.com/moby/moby/man/src/update.md diff --git a/fn/vendor/github.com/moby/moby/man/src/version.md b/cli/vendor/github.com/moby/moby/man/src/version.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/version.md rename to cli/vendor/github.com/moby/moby/man/src/version.md diff --git a/fn/vendor/github.com/moby/moby/man/src/volume.md b/cli/vendor/github.com/moby/moby/man/src/volume.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/volume.md rename to cli/vendor/github.com/moby/moby/man/src/volume.md diff --git a/fn/vendor/github.com/moby/moby/man/src/volume/create.md b/cli/vendor/github.com/moby/moby/man/src/volume/create.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/volume/create.md rename to cli/vendor/github.com/moby/moby/man/src/volume/create.md diff --git a/fn/vendor/github.com/moby/moby/man/src/volume/inspect.md b/cli/vendor/github.com/moby/moby/man/src/volume/inspect.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/volume/inspect.md rename to cli/vendor/github.com/moby/moby/man/src/volume/inspect.md diff --git a/fn/vendor/github.com/moby/moby/man/src/volume/ls.md b/cli/vendor/github.com/moby/moby/man/src/volume/ls.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/volume/ls.md rename to cli/vendor/github.com/moby/moby/man/src/volume/ls.md diff --git a/fn/vendor/github.com/moby/moby/man/src/wait.md b/cli/vendor/github.com/moby/moby/man/src/wait.md similarity index 100% rename from fn/vendor/github.com/moby/moby/man/src/wait.md rename to cli/vendor/github.com/moby/moby/man/src/wait.md diff --git a/fn/vendor/github.com/moby/moby/migrate/v1/migratev1.go b/cli/vendor/github.com/moby/moby/migrate/v1/migratev1.go similarity index 100% rename from fn/vendor/github.com/moby/moby/migrate/v1/migratev1.go rename to cli/vendor/github.com/moby/moby/migrate/v1/migratev1.go diff --git a/fn/vendor/github.com/moby/moby/migrate/v1/migratev1_test.go b/cli/vendor/github.com/moby/moby/migrate/v1/migratev1_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/migrate/v1/migratev1_test.go rename to cli/vendor/github.com/moby/moby/migrate/v1/migratev1_test.go diff --git a/fn/vendor/github.com/moby/moby/oci/defaults_linux.go b/cli/vendor/github.com/moby/moby/oci/defaults_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/oci/defaults_linux.go rename to cli/vendor/github.com/moby/moby/oci/defaults_linux.go diff --git a/fn/vendor/github.com/moby/moby/oci/defaults_solaris.go b/cli/vendor/github.com/moby/moby/oci/defaults_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/oci/defaults_solaris.go rename to cli/vendor/github.com/moby/moby/oci/defaults_solaris.go diff --git a/fn/vendor/github.com/moby/moby/oci/defaults_windows.go b/cli/vendor/github.com/moby/moby/oci/defaults_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/oci/defaults_windows.go rename to cli/vendor/github.com/moby/moby/oci/defaults_windows.go diff --git a/fn/vendor/github.com/moby/moby/oci/devices_linux.go b/cli/vendor/github.com/moby/moby/oci/devices_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/oci/devices_linux.go rename to cli/vendor/github.com/moby/moby/oci/devices_linux.go diff --git a/fn/vendor/github.com/moby/moby/oci/devices_unsupported.go b/cli/vendor/github.com/moby/moby/oci/devices_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/oci/devices_unsupported.go rename to cli/vendor/github.com/moby/moby/oci/devices_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/oci/namespaces.go b/cli/vendor/github.com/moby/moby/oci/namespaces.go similarity index 100% rename from fn/vendor/github.com/moby/moby/oci/namespaces.go rename to cli/vendor/github.com/moby/moby/oci/namespaces.go diff --git a/fn/vendor/github.com/moby/moby/opts/env.go b/cli/vendor/github.com/moby/moby/opts/env.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/env.go rename to cli/vendor/github.com/moby/moby/opts/env.go diff --git a/fn/vendor/github.com/moby/moby/opts/env_test.go b/cli/vendor/github.com/moby/moby/opts/env_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/env_test.go rename to cli/vendor/github.com/moby/moby/opts/env_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/hosts.go b/cli/vendor/github.com/moby/moby/opts/hosts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/hosts.go rename to cli/vendor/github.com/moby/moby/opts/hosts.go diff --git a/fn/vendor/github.com/moby/moby/opts/hosts_test.go b/cli/vendor/github.com/moby/moby/opts/hosts_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/hosts_test.go rename to cli/vendor/github.com/moby/moby/opts/hosts_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/hosts_unix.go b/cli/vendor/github.com/moby/moby/opts/hosts_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/hosts_unix.go rename to cli/vendor/github.com/moby/moby/opts/hosts_unix.go diff --git a/fn/vendor/github.com/moby/moby/opts/hosts_windows.go b/cli/vendor/github.com/moby/moby/opts/hosts_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/hosts_windows.go rename to cli/vendor/github.com/moby/moby/opts/hosts_windows.go diff --git a/fn/vendor/github.com/moby/moby/opts/ip.go b/cli/vendor/github.com/moby/moby/opts/ip.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/ip.go rename to cli/vendor/github.com/moby/moby/opts/ip.go diff --git a/fn/vendor/github.com/moby/moby/opts/ip_test.go b/cli/vendor/github.com/moby/moby/opts/ip_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/ip_test.go rename to cli/vendor/github.com/moby/moby/opts/ip_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/mount.go b/cli/vendor/github.com/moby/moby/opts/mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/mount.go rename to cli/vendor/github.com/moby/moby/opts/mount.go diff --git a/fn/vendor/github.com/moby/moby/opts/mount_test.go b/cli/vendor/github.com/moby/moby/opts/mount_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/mount_test.go rename to cli/vendor/github.com/moby/moby/opts/mount_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/opts.go b/cli/vendor/github.com/moby/moby/opts/opts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/opts.go rename to cli/vendor/github.com/moby/moby/opts/opts.go diff --git a/fn/vendor/github.com/moby/moby/opts/opts_test.go b/cli/vendor/github.com/moby/moby/opts/opts_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/opts_test.go rename to cli/vendor/github.com/moby/moby/opts/opts_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/opts_unix.go b/cli/vendor/github.com/moby/moby/opts/opts_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/opts_unix.go rename to cli/vendor/github.com/moby/moby/opts/opts_unix.go diff --git a/fn/vendor/github.com/moby/moby/opts/opts_windows.go b/cli/vendor/github.com/moby/moby/opts/opts_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/opts_windows.go rename to cli/vendor/github.com/moby/moby/opts/opts_windows.go diff --git a/fn/vendor/github.com/moby/moby/opts/port.go b/cli/vendor/github.com/moby/moby/opts/port.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/port.go rename to cli/vendor/github.com/moby/moby/opts/port.go diff --git a/fn/vendor/github.com/moby/moby/opts/port_test.go b/cli/vendor/github.com/moby/moby/opts/port_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/port_test.go rename to cli/vendor/github.com/moby/moby/opts/port_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/quotedstring.go b/cli/vendor/github.com/moby/moby/opts/quotedstring.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/quotedstring.go rename to cli/vendor/github.com/moby/moby/opts/quotedstring.go diff --git a/fn/vendor/github.com/moby/moby/opts/quotedstring_test.go b/cli/vendor/github.com/moby/moby/opts/quotedstring_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/quotedstring_test.go rename to cli/vendor/github.com/moby/moby/opts/quotedstring_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/runtime.go b/cli/vendor/github.com/moby/moby/opts/runtime.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/runtime.go rename to cli/vendor/github.com/moby/moby/opts/runtime.go diff --git a/fn/vendor/github.com/moby/moby/opts/secret.go b/cli/vendor/github.com/moby/moby/opts/secret.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/secret.go rename to cli/vendor/github.com/moby/moby/opts/secret.go diff --git a/fn/vendor/github.com/moby/moby/opts/secret_test.go b/cli/vendor/github.com/moby/moby/opts/secret_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/secret_test.go rename to cli/vendor/github.com/moby/moby/opts/secret_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/throttledevice.go b/cli/vendor/github.com/moby/moby/opts/throttledevice.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/throttledevice.go rename to cli/vendor/github.com/moby/moby/opts/throttledevice.go diff --git a/fn/vendor/github.com/moby/moby/opts/ulimit.go b/cli/vendor/github.com/moby/moby/opts/ulimit.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/ulimit.go rename to cli/vendor/github.com/moby/moby/opts/ulimit.go diff --git a/fn/vendor/github.com/moby/moby/opts/ulimit_test.go b/cli/vendor/github.com/moby/moby/opts/ulimit_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/ulimit_test.go rename to cli/vendor/github.com/moby/moby/opts/ulimit_test.go diff --git a/fn/vendor/github.com/moby/moby/opts/weightdevice.go b/cli/vendor/github.com/moby/moby/opts/weightdevice.go similarity index 100% rename from fn/vendor/github.com/moby/moby/opts/weightdevice.go rename to cli/vendor/github.com/moby/moby/opts/weightdevice.go diff --git a/fn/vendor/github.com/moby/moby/pkg/README.md b/cli/vendor/github.com/moby/moby/pkg/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/README.md rename to cli/vendor/github.com/moby/moby/pkg/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/aaparser/aaparser.go b/cli/vendor/github.com/moby/moby/pkg/aaparser/aaparser.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/aaparser/aaparser.go rename to cli/vendor/github.com/moby/moby/pkg/aaparser/aaparser.go diff --git a/fn/vendor/github.com/moby/moby/pkg/aaparser/aaparser_test.go b/cli/vendor/github.com/moby/moby/pkg/aaparser/aaparser_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/aaparser/aaparser_test.go rename to cli/vendor/github.com/moby/moby/pkg/aaparser/aaparser_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/README.md b/cli/vendor/github.com/moby/moby/pkg/archive/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/README.md rename to cli/vendor/github.com/moby/moby/pkg/archive/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_linux.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_linux.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_linux_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_linux_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_other.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_other.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_other.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_other.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_unix.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_unix.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_windows.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_windows.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/archive_windows_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/archive_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/archive_windows_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/archive_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes_linux.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes_linux.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes_other.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes_other.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes_other.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes_other.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes_posix_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes_posix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes_posix_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes_posix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes_unix.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes_unix.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/changes_windows.go b/cli/vendor/github.com/moby/moby/pkg/archive/changes_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/changes_windows.go rename to cli/vendor/github.com/moby/moby/pkg/archive/changes_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/copy.go b/cli/vendor/github.com/moby/moby/pkg/archive/copy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/copy.go rename to cli/vendor/github.com/moby/moby/pkg/archive/copy.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/copy_unix.go b/cli/vendor/github.com/moby/moby/pkg/archive/copy_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/copy_unix.go rename to cli/vendor/github.com/moby/moby/pkg/archive/copy_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/copy_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/copy_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/copy_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/copy_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/copy_windows.go b/cli/vendor/github.com/moby/moby/pkg/archive/copy_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/copy_windows.go rename to cli/vendor/github.com/moby/moby/pkg/archive/copy_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/diff.go b/cli/vendor/github.com/moby/moby/pkg/archive/diff.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/diff.go rename to cli/vendor/github.com/moby/moby/pkg/archive/diff.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/diff_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/diff_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/diff_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/diff_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/example_changes.go b/cli/vendor/github.com/moby/moby/pkg/archive/example_changes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/example_changes.go rename to cli/vendor/github.com/moby/moby/pkg/archive/example_changes.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/testdata/broken.tar b/cli/vendor/github.com/moby/moby/pkg/archive/testdata/broken.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/testdata/broken.tar rename to cli/vendor/github.com/moby/moby/pkg/archive/testdata/broken.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/time_linux.go b/cli/vendor/github.com/moby/moby/pkg/archive/time_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/time_linux.go rename to cli/vendor/github.com/moby/moby/pkg/archive/time_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/time_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/archive/time_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/time_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/archive/time_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/utils_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/utils_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/utils_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/whiteouts.go b/cli/vendor/github.com/moby/moby/pkg/archive/whiteouts.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/whiteouts.go rename to cli/vendor/github.com/moby/moby/pkg/archive/whiteouts.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/wrap.go b/cli/vendor/github.com/moby/moby/pkg/archive/wrap.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/wrap.go rename to cli/vendor/github.com/moby/moby/pkg/archive/wrap.go diff --git a/fn/vendor/github.com/moby/moby/pkg/archive/wrap_test.go b/cli/vendor/github.com/moby/moby/pkg/archive/wrap_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/archive/wrap_test.go rename to cli/vendor/github.com/moby/moby/pkg/archive/wrap_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/authorization/api.go b/cli/vendor/github.com/moby/moby/pkg/authorization/api.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/authorization/api.go rename to cli/vendor/github.com/moby/moby/pkg/authorization/api.go diff --git a/fn/vendor/github.com/moby/moby/pkg/authorization/authz.go b/cli/vendor/github.com/moby/moby/pkg/authorization/authz.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/authorization/authz.go rename to cli/vendor/github.com/moby/moby/pkg/authorization/authz.go diff --git a/fn/vendor/github.com/moby/moby/pkg/authorization/authz_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/authorization/authz_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/authorization/authz_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/authorization/authz_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/authorization/middleware.go b/cli/vendor/github.com/moby/moby/pkg/authorization/middleware.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/authorization/middleware.go rename to cli/vendor/github.com/moby/moby/pkg/authorization/middleware.go diff --git a/fn/vendor/github.com/moby/moby/pkg/authorization/plugin.go b/cli/vendor/github.com/moby/moby/pkg/authorization/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/authorization/plugin.go rename to cli/vendor/github.com/moby/moby/pkg/authorization/plugin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/authorization/response.go b/cli/vendor/github.com/moby/moby/pkg/authorization/response.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/authorization/response.go rename to cli/vendor/github.com/moby/moby/pkg/authorization/response.go diff --git a/fn/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered.go b/cli/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered.go rename to cli/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered.go diff --git a/fn/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered_test.go b/cli/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered_test.go rename to cli/vendor/github.com/moby/moby/pkg/broadcaster/unbuffered_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive_test.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive_test.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive_unix.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive_unix.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive_windows.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/archive_windows.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/archive_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_linux.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_linux.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_unix.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_unix.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/chroot_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/diff.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/diff.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/diff.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/diff.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/diff_unix.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/diff_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/diff_unix.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/diff_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/diff_windows.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/diff_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/diff_windows.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/diff_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/init_unix.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/init_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/init_unix.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/init_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/chrootarchive/init_windows.go b/cli/vendor/github.com/moby/moby/pkg/chrootarchive/init_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/chrootarchive/init_windows.go rename to cli/vendor/github.com/moby/moby/pkg/chrootarchive/init_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_log.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_log.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_log.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_log.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_deferred_remove.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_deferred_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_deferred_remove.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_deferred_remove.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/devmapper_wrapper_no_deferred_remove.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/ioctl.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/ioctl.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/ioctl.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/ioctl.go diff --git a/fn/vendor/github.com/moby/moby/pkg/devicemapper/log.go b/cli/vendor/github.com/moby/moby/pkg/devicemapper/log.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/devicemapper/log.go rename to cli/vendor/github.com/moby/moby/pkg/devicemapper/log.go diff --git a/fn/vendor/github.com/moby/moby/pkg/directory/directory.go b/cli/vendor/github.com/moby/moby/pkg/directory/directory.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/directory/directory.go rename to cli/vendor/github.com/moby/moby/pkg/directory/directory.go diff --git a/fn/vendor/github.com/moby/moby/pkg/directory/directory_test.go b/cli/vendor/github.com/moby/moby/pkg/directory/directory_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/directory/directory_test.go rename to cli/vendor/github.com/moby/moby/pkg/directory/directory_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/directory/directory_unix.go b/cli/vendor/github.com/moby/moby/pkg/directory/directory_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/directory/directory_unix.go rename to cli/vendor/github.com/moby/moby/pkg/directory/directory_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/directory/directory_windows.go b/cli/vendor/github.com/moby/moby/pkg/directory/directory_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/directory/directory_windows.go rename to cli/vendor/github.com/moby/moby/pkg/directory/directory_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/README.md b/cli/vendor/github.com/moby/moby/pkg/discovery/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/README.md rename to cli/vendor/github.com/moby/moby/pkg/discovery/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/backends.go b/cli/vendor/github.com/moby/moby/pkg/discovery/backends.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/backends.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/backends.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/discovery.go b/cli/vendor/github.com/moby/moby/pkg/discovery/discovery.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/discovery.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/discovery.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/discovery_test.go b/cli/vendor/github.com/moby/moby/pkg/discovery/discovery_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/discovery_test.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/discovery_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/entry.go b/cli/vendor/github.com/moby/moby/pkg/discovery/entry.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/entry.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/entry.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/file/file.go b/cli/vendor/github.com/moby/moby/pkg/discovery/file/file.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/file/file.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/file/file.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/file/file_test.go b/cli/vendor/github.com/moby/moby/pkg/discovery/file/file_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/file/file_test.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/file/file_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/generator.go b/cli/vendor/github.com/moby/moby/pkg/discovery/generator.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/generator.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/generator.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/generator_test.go b/cli/vendor/github.com/moby/moby/pkg/discovery/generator_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/generator_test.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/generator_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/kv/kv.go b/cli/vendor/github.com/moby/moby/pkg/discovery/kv/kv.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/kv/kv.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/kv/kv.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/kv/kv_test.go b/cli/vendor/github.com/moby/moby/pkg/discovery/kv/kv_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/kv/kv_test.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/kv/kv_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/memory/memory.go b/cli/vendor/github.com/moby/moby/pkg/discovery/memory/memory.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/memory/memory.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/memory/memory.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/memory/memory_test.go b/cli/vendor/github.com/moby/moby/pkg/discovery/memory/memory_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/memory/memory_test.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/memory/memory_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes.go b/cli/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes.go diff --git a/fn/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes_test.go b/cli/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes_test.go rename to cli/vendor/github.com/moby/moby/pkg/discovery/nodes/nodes_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/filenotify/filenotify.go b/cli/vendor/github.com/moby/moby/pkg/filenotify/filenotify.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/filenotify/filenotify.go rename to cli/vendor/github.com/moby/moby/pkg/filenotify/filenotify.go diff --git a/fn/vendor/github.com/moby/moby/pkg/filenotify/fsnotify.go b/cli/vendor/github.com/moby/moby/pkg/filenotify/fsnotify.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/filenotify/fsnotify.go rename to cli/vendor/github.com/moby/moby/pkg/filenotify/fsnotify.go diff --git a/fn/vendor/github.com/moby/moby/pkg/filenotify/poller.go b/cli/vendor/github.com/moby/moby/pkg/filenotify/poller.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/filenotify/poller.go rename to cli/vendor/github.com/moby/moby/pkg/filenotify/poller.go diff --git a/fn/vendor/github.com/moby/moby/pkg/filenotify/poller_test.go b/cli/vendor/github.com/moby/moby/pkg/filenotify/poller_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/filenotify/poller_test.go rename to cli/vendor/github.com/moby/moby/pkg/filenotify/poller_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils.go b/cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils.go rename to cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_darwin.go b/cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_darwin.go rename to cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_darwin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_solaris.go b/cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_test.go b/cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_test.go rename to cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_unix.go b/cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_unix.go rename to cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_windows.go b/cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fileutils/fileutils_windows.go rename to cli/vendor/github.com/moby/moby/pkg/fileutils/fileutils_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux.go b/cli/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux.go rename to cli/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux_test.go b/cli/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux_test.go rename to cli/vendor/github.com/moby/moby/pkg/fsutils/fsutils_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/gitutils/gitutils.go b/cli/vendor/github.com/moby/moby/pkg/gitutils/gitutils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/gitutils/gitutils.go rename to cli/vendor/github.com/moby/moby/pkg/gitutils/gitutils.go diff --git a/fn/vendor/github.com/moby/moby/pkg/gitutils/gitutils_test.go b/cli/vendor/github.com/moby/moby/pkg/gitutils/gitutils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/gitutils/gitutils_test.go rename to cli/vendor/github.com/moby/moby/pkg/gitutils/gitutils_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/homedir/homedir.go b/cli/vendor/github.com/moby/moby/pkg/homedir/homedir.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/homedir/homedir.go rename to cli/vendor/github.com/moby/moby/pkg/homedir/homedir.go diff --git a/fn/vendor/github.com/moby/moby/pkg/homedir/homedir_linux.go b/cli/vendor/github.com/moby/moby/pkg/homedir/homedir_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/homedir/homedir_linux.go rename to cli/vendor/github.com/moby/moby/pkg/homedir/homedir_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/homedir/homedir_others.go b/cli/vendor/github.com/moby/moby/pkg/homedir/homedir_others.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/homedir/homedir_others.go rename to cli/vendor/github.com/moby/moby/pkg/homedir/homedir_others.go diff --git a/fn/vendor/github.com/moby/moby/pkg/homedir/homedir_test.go b/cli/vendor/github.com/moby/moby/pkg/homedir/homedir_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/homedir/homedir_test.go rename to cli/vendor/github.com/moby/moby/pkg/homedir/homedir_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/httputils/httputils.go b/cli/vendor/github.com/moby/moby/pkg/httputils/httputils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/httputils/httputils.go rename to cli/vendor/github.com/moby/moby/pkg/httputils/httputils.go diff --git a/fn/vendor/github.com/moby/moby/pkg/httputils/httputils_test.go b/cli/vendor/github.com/moby/moby/pkg/httputils/httputils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/httputils/httputils_test.go rename to cli/vendor/github.com/moby/moby/pkg/httputils/httputils_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/httputils/mimetype.go b/cli/vendor/github.com/moby/moby/pkg/httputils/mimetype.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/httputils/mimetype.go rename to cli/vendor/github.com/moby/moby/pkg/httputils/mimetype.go diff --git a/fn/vendor/github.com/moby/moby/pkg/httputils/mimetype_test.go b/cli/vendor/github.com/moby/moby/pkg/httputils/mimetype_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/httputils/mimetype_test.go rename to cli/vendor/github.com/moby/moby/pkg/httputils/mimetype_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader.go b/cli/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader.go rename to cli/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader.go diff --git a/fn/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader_test.go b/cli/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader_test.go rename to cli/vendor/github.com/moby/moby/pkg/httputils/resumablerequestreader_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/idtools.go b/cli/vendor/github.com/moby/moby/pkg/idtools/idtools.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/idtools.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/idtools.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/idtools_unix.go b/cli/vendor/github.com/moby/moby/pkg/idtools/idtools_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/idtools_unix.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/idtools_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/idtools_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/idtools/idtools_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/idtools_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/idtools_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/idtools_windows.go b/cli/vendor/github.com/moby/moby/pkg/idtools/idtools_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/idtools_windows.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/idtools_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_linux.go b/cli/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_linux.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/usergroupadd_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/idtools/utils_unix.go b/cli/vendor/github.com/moby/moby/pkg/idtools/utils_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/idtools/utils_unix.go rename to cli/vendor/github.com/moby/moby/pkg/idtools/utils_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/buffer.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/buffer.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/buffer.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/buffer.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/buffer_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/buffer_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/buffer_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/buffer_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/bytespipe.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/bytespipe.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/bytespipe.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/bytespipe.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/bytespipe_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/bytespipe_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/bytespipe_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/bytespipe_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/fmt.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/fmt.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/fmt.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/fmt.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/fmt_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/fmt_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/fmt_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/fmt_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/fswriters.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/fswriters.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/fswriters.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/fswriters.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/fswriters_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/fswriters_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/fswriters_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/fswriters_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/multireader.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/multireader.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/multireader.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/multireader.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/multireader_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/multireader_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/multireader_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/multireader_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/readers.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/readers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/readers.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/readers.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/readers_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/readers_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/readers_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/readers_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/temp_unix.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/temp_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/temp_unix.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/temp_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/temp_windows.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/temp_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/temp_windows.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/temp_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/writeflusher.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/writeflusher.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/writeflusher.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/writeflusher.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/writers.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/writers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/writers.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/writers.go diff --git a/fn/vendor/github.com/moby/moby/pkg/ioutils/writers_test.go b/cli/vendor/github.com/moby/moby/pkg/ioutils/writers_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/ioutils/writers_test.go rename to cli/vendor/github.com/moby/moby/pkg/ioutils/writers_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling_test.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling_test.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlog_marshalling_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes_test.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes_test.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/jsonlogbytes_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling_test.go b/cli/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling_test.go rename to cli/vendor/github.com/moby/moby/pkg/jsonlog/time_marshalling_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage.go b/cli/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage.go rename to cli/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage.go diff --git a/fn/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage_test.go b/cli/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage_test.go rename to cli/vendor/github.com/moby/moby/pkg/jsonmessage/jsonmessage_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/listeners/group_unix.go b/cli/vendor/github.com/moby/moby/pkg/listeners/group_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/listeners/group_unix.go rename to cli/vendor/github.com/moby/moby/pkg/listeners/group_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/listeners/listeners_solaris.go b/cli/vendor/github.com/moby/moby/pkg/listeners/listeners_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/listeners/listeners_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/listeners/listeners_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/listeners/listeners_unix.go b/cli/vendor/github.com/moby/moby/pkg/listeners/listeners_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/listeners/listeners_unix.go rename to cli/vendor/github.com/moby/moby/pkg/listeners/listeners_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/listeners/listeners_windows.go b/cli/vendor/github.com/moby/moby/pkg/listeners/listeners_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/listeners/listeners_windows.go rename to cli/vendor/github.com/moby/moby/pkg/listeners/listeners_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/locker/README.md b/cli/vendor/github.com/moby/moby/pkg/locker/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/locker/README.md rename to cli/vendor/github.com/moby/moby/pkg/locker/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/locker/locker.go b/cli/vendor/github.com/moby/moby/pkg/locker/locker.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/locker/locker.go rename to cli/vendor/github.com/moby/moby/pkg/locker/locker.go diff --git a/fn/vendor/github.com/moby/moby/pkg/locker/locker_test.go b/cli/vendor/github.com/moby/moby/pkg/locker/locker_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/locker/locker_test.go rename to cli/vendor/github.com/moby/moby/pkg/locker/locker_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/longpath/longpath.go b/cli/vendor/github.com/moby/moby/pkg/longpath/longpath.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/longpath/longpath.go rename to cli/vendor/github.com/moby/moby/pkg/longpath/longpath.go diff --git a/fn/vendor/github.com/moby/moby/pkg/longpath/longpath_test.go b/cli/vendor/github.com/moby/moby/pkg/longpath/longpath_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/longpath/longpath_test.go rename to cli/vendor/github.com/moby/moby/pkg/longpath/longpath_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/loopback/attach_loopback.go b/cli/vendor/github.com/moby/moby/pkg/loopback/attach_loopback.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/loopback/attach_loopback.go rename to cli/vendor/github.com/moby/moby/pkg/loopback/attach_loopback.go diff --git a/fn/vendor/github.com/moby/moby/pkg/loopback/ioctl.go b/cli/vendor/github.com/moby/moby/pkg/loopback/ioctl.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/loopback/ioctl.go rename to cli/vendor/github.com/moby/moby/pkg/loopback/ioctl.go diff --git a/fn/vendor/github.com/moby/moby/pkg/loopback/loop_wrapper.go b/cli/vendor/github.com/moby/moby/pkg/loopback/loop_wrapper.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/loopback/loop_wrapper.go rename to cli/vendor/github.com/moby/moby/pkg/loopback/loop_wrapper.go diff --git a/fn/vendor/github.com/moby/moby/pkg/loopback/loopback.go b/cli/vendor/github.com/moby/moby/pkg/loopback/loopback.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/loopback/loopback.go rename to cli/vendor/github.com/moby/moby/pkg/loopback/loopback.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/flags.go b/cli/vendor/github.com/moby/moby/pkg/mount/flags.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/flags.go rename to cli/vendor/github.com/moby/moby/pkg/mount/flags.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/flags_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/mount/flags_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/flags_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/mount/flags_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/flags_linux.go b/cli/vendor/github.com/moby/moby/pkg/mount/flags_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/flags_linux.go rename to cli/vendor/github.com/moby/moby/pkg/mount/flags_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/flags_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/mount/flags_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/flags_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/mount/flags_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mount.go b/cli/vendor/github.com/moby/moby/pkg/mount/mount.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mount.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mount.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mount_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/mount/mount_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mount_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mount_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mounter_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/mount/mounter_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mounter_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mounter_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mounter_linux.go b/cli/vendor/github.com/moby/moby/pkg/mount/mounter_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mounter_linux.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mounter_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mounter_linux_test.go b/cli/vendor/github.com/moby/moby/pkg/mount/mounter_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mounter_linux_test.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mounter_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mounter_solaris.go b/cli/vendor/github.com/moby/moby/pkg/mount/mounter_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mounter_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mounter_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mounter_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/mount/mounter_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mounter_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mounter_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux_test.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux_test.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_solaris.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_windows.go b/cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/mountinfo_windows.go rename to cli/vendor/github.com/moby/moby/pkg/mount/mountinfo_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux.go b/cli/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux.go rename to cli/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux_test.go b/cli/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux_test.go rename to cli/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_solaris.go b/cli/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/mount/sharedsubtree_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/namesgenerator/cmd/names-generator/main.go b/cli/vendor/github.com/moby/moby/pkg/namesgenerator/cmd/names-generator/main.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/namesgenerator/cmd/names-generator/main.go rename to cli/vendor/github.com/moby/moby/pkg/namesgenerator/cmd/names-generator/main.go diff --git a/fn/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator.go b/cli/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator.go rename to cli/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator.go diff --git a/fn/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator_test.go b/cli/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator_test.go rename to cli/vendor/github.com/moby/moby/pkg/namesgenerator/names-generator_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_darwin.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_darwin.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_darwin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_windows.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_windows.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/kernel_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_linux.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_linux.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_solaris.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/kernel/uname_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_linux.go b/cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_linux.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_solaris.go b/cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix.go b/cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_windows.go b/cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_windows.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/operatingsystem/operatingsystem_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/parsers.go b/cli/vendor/github.com/moby/moby/pkg/parsers/parsers.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/parsers.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/parsers.go diff --git a/fn/vendor/github.com/moby/moby/pkg/parsers/parsers_test.go b/cli/vendor/github.com/moby/moby/pkg/parsers/parsers_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/parsers/parsers_test.go rename to cli/vendor/github.com/moby/moby/pkg/parsers/parsers_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile.go b/cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile.go rename to cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_darwin.go b/cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_darwin.go rename to cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_darwin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_test.go b/cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_test.go rename to cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_unix.go b/cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_unix.go rename to cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_windows.go b/cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pidfile/pidfile_windows.go rename to cli/vendor/github.com/moby/moby/pkg/pidfile/pidfile_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/platform/architecture_linux.go b/cli/vendor/github.com/moby/moby/pkg/platform/architecture_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/platform/architecture_linux.go rename to cli/vendor/github.com/moby/moby/pkg/platform/architecture_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/platform/architecture_unix.go b/cli/vendor/github.com/moby/moby/pkg/platform/architecture_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/platform/architecture_unix.go rename to cli/vendor/github.com/moby/moby/pkg/platform/architecture_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/platform/architecture_windows.go b/cli/vendor/github.com/moby/moby/pkg/platform/architecture_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/platform/architecture_windows.go rename to cli/vendor/github.com/moby/moby/pkg/platform/architecture_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/platform/platform.go b/cli/vendor/github.com/moby/moby/pkg/platform/platform.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/platform/platform.go rename to cli/vendor/github.com/moby/moby/pkg/platform/platform.go diff --git a/fn/vendor/github.com/moby/moby/pkg/platform/utsname_int8.go b/cli/vendor/github.com/moby/moby/pkg/platform/utsname_int8.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/platform/utsname_int8.go rename to cli/vendor/github.com/moby/moby/pkg/platform/utsname_int8.go diff --git a/fn/vendor/github.com/moby/moby/pkg/platform/utsname_uint8.go b/cli/vendor/github.com/moby/moby/pkg/platform/utsname_uint8.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/platform/utsname_uint8.go rename to cli/vendor/github.com/moby/moby/pkg/platform/utsname_uint8.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugingetter/getter.go b/cli/vendor/github.com/moby/moby/pkg/plugingetter/getter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugingetter/getter.go rename to cli/vendor/github.com/moby/moby/pkg/plugingetter/getter.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/client.go b/cli/vendor/github.com/moby/moby/pkg/plugins/client.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/client.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/client.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/client_test.go b/cli/vendor/github.com/moby/moby/pkg/plugins/client_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/client_test.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/client_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/discovery.go b/cli/vendor/github.com/moby/moby/pkg/plugins/discovery.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/discovery.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/discovery.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/discovery_test.go b/cli/vendor/github.com/moby/moby/pkg/plugins/discovery_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/discovery_test.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/discovery_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/discovery_unix.go b/cli/vendor/github.com/moby/moby/pkg/plugins/discovery_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/discovery_unix.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/discovery_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/discovery_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/plugins/discovery_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/discovery_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/discovery_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/discovery_windows.go b/cli/vendor/github.com/moby/moby/pkg/plugins/discovery_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/discovery_windows.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/discovery_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/errors.go b/cli/vendor/github.com/moby/moby/pkg/plugins/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/errors.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/errors.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/plugin_test.go b/cli/vendor/github.com/moby/moby/pkg/plugins/plugin_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/plugin_test.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/plugin_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/README.md b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/README.md rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/foo.go b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/foo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/foo.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/foo.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/fixtures/otherfixture/spaceship.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/main.go b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/main.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/main.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/main.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser.go b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser_test.go b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser_test.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/parser_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/template.go b/cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/template.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/template.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/pluginrpc-gen/template.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/plugins.go b/cli/vendor/github.com/moby/moby/pkg/plugins/plugins.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/plugins.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/plugins.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/plugins_unix.go b/cli/vendor/github.com/moby/moby/pkg/plugins/plugins_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/plugins_unix.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/plugins_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/plugins_windows.go b/cli/vendor/github.com/moby/moby/pkg/plugins/plugins_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/plugins_windows.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/plugins_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/transport/http.go b/cli/vendor/github.com/moby/moby/pkg/plugins/transport/http.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/transport/http.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/transport/http.go diff --git a/fn/vendor/github.com/moby/moby/pkg/plugins/transport/transport.go b/cli/vendor/github.com/moby/moby/pkg/plugins/transport/transport.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/plugins/transport/transport.go rename to cli/vendor/github.com/moby/moby/pkg/plugins/transport/transport.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pools/pools.go b/cli/vendor/github.com/moby/moby/pkg/pools/pools.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pools/pools.go rename to cli/vendor/github.com/moby/moby/pkg/pools/pools.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pools/pools_test.go b/cli/vendor/github.com/moby/moby/pkg/pools/pools_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pools/pools_test.go rename to cli/vendor/github.com/moby/moby/pkg/pools/pools_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/progress/progress.go b/cli/vendor/github.com/moby/moby/pkg/progress/progress.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/progress/progress.go rename to cli/vendor/github.com/moby/moby/pkg/progress/progress.go diff --git a/fn/vendor/github.com/moby/moby/pkg/progress/progressreader.go b/cli/vendor/github.com/moby/moby/pkg/progress/progressreader.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/progress/progressreader.go rename to cli/vendor/github.com/moby/moby/pkg/progress/progressreader.go diff --git a/fn/vendor/github.com/moby/moby/pkg/progress/progressreader_test.go b/cli/vendor/github.com/moby/moby/pkg/progress/progressreader_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/progress/progressreader_test.go rename to cli/vendor/github.com/moby/moby/pkg/progress/progressreader_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/promise/promise.go b/cli/vendor/github.com/moby/moby/pkg/promise/promise.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/promise/promise.go rename to cli/vendor/github.com/moby/moby/pkg/promise/promise.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pubsub/publisher.go b/cli/vendor/github.com/moby/moby/pkg/pubsub/publisher.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pubsub/publisher.go rename to cli/vendor/github.com/moby/moby/pkg/pubsub/publisher.go diff --git a/fn/vendor/github.com/moby/moby/pkg/pubsub/publisher_test.go b/cli/vendor/github.com/moby/moby/pkg/pubsub/publisher_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/pubsub/publisher_test.go rename to cli/vendor/github.com/moby/moby/pkg/pubsub/publisher_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/random/random.go b/cli/vendor/github.com/moby/moby/pkg/random/random.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/random/random.go rename to cli/vendor/github.com/moby/moby/pkg/random/random.go diff --git a/fn/vendor/github.com/moby/moby/pkg/random/random_test.go b/cli/vendor/github.com/moby/moby/pkg/random/random_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/random/random_test.go rename to cli/vendor/github.com/moby/moby/pkg/random/random_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/reexec/README.md b/cli/vendor/github.com/moby/moby/pkg/reexec/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/reexec/README.md rename to cli/vendor/github.com/moby/moby/pkg/reexec/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/reexec/command_linux.go b/cli/vendor/github.com/moby/moby/pkg/reexec/command_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/reexec/command_linux.go rename to cli/vendor/github.com/moby/moby/pkg/reexec/command_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/reexec/command_unix.go b/cli/vendor/github.com/moby/moby/pkg/reexec/command_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/reexec/command_unix.go rename to cli/vendor/github.com/moby/moby/pkg/reexec/command_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/reexec/command_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/reexec/command_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/reexec/command_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/reexec/command_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/reexec/command_windows.go b/cli/vendor/github.com/moby/moby/pkg/reexec/command_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/reexec/command_windows.go rename to cli/vendor/github.com/moby/moby/pkg/reexec/command_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/reexec/reexec.go b/cli/vendor/github.com/moby/moby/pkg/reexec/reexec.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/reexec/reexec.go rename to cli/vendor/github.com/moby/moby/pkg/reexec/reexec.go diff --git a/fn/vendor/github.com/moby/moby/pkg/registrar/registrar.go b/cli/vendor/github.com/moby/moby/pkg/registrar/registrar.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/registrar/registrar.go rename to cli/vendor/github.com/moby/moby/pkg/registrar/registrar.go diff --git a/fn/vendor/github.com/moby/moby/pkg/registrar/registrar_test.go b/cli/vendor/github.com/moby/moby/pkg/registrar/registrar_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/registrar/registrar_test.go rename to cli/vendor/github.com/moby/moby/pkg/registrar/registrar_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/README.md b/cli/vendor/github.com/moby/moby/pkg/signal/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/README.md rename to cli/vendor/github.com/moby/moby/pkg/signal/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_darwin.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_darwin.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_darwin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_linux.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_linux.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_solaris.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_unix.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_unix.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/signal_windows.go b/cli/vendor/github.com/moby/moby/pkg/signal/signal_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/signal_windows.go rename to cli/vendor/github.com/moby/moby/pkg/signal/signal_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/signal/trap.go b/cli/vendor/github.com/moby/moby/pkg/signal/trap.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/signal/trap.go rename to cli/vendor/github.com/moby/moby/pkg/signal/trap.go diff --git a/fn/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy.go b/cli/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy.go rename to cli/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy.go diff --git a/fn/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy_test.go b/cli/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy_test.go rename to cli/vendor/github.com/moby/moby/pkg/stdcopy/stdcopy_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter.go b/cli/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter.go rename to cli/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter.go diff --git a/fn/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter_test.go b/cli/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter_test.go rename to cli/vendor/github.com/moby/moby/pkg/streamformatter/streamformatter_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/stringid/README.md b/cli/vendor/github.com/moby/moby/pkg/stringid/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stringid/README.md rename to cli/vendor/github.com/moby/moby/pkg/stringid/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/stringid/stringid.go b/cli/vendor/github.com/moby/moby/pkg/stringid/stringid.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stringid/stringid.go rename to cli/vendor/github.com/moby/moby/pkg/stringid/stringid.go diff --git a/fn/vendor/github.com/moby/moby/pkg/stringid/stringid_test.go b/cli/vendor/github.com/moby/moby/pkg/stringid/stringid_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stringid/stringid_test.go rename to cli/vendor/github.com/moby/moby/pkg/stringid/stringid_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/stringutils/README.md b/cli/vendor/github.com/moby/moby/pkg/stringutils/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stringutils/README.md rename to cli/vendor/github.com/moby/moby/pkg/stringutils/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/stringutils/stringutils.go b/cli/vendor/github.com/moby/moby/pkg/stringutils/stringutils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stringutils/stringutils.go rename to cli/vendor/github.com/moby/moby/pkg/stringutils/stringutils.go diff --git a/fn/vendor/github.com/moby/moby/pkg/stringutils/stringutils_test.go b/cli/vendor/github.com/moby/moby/pkg/stringutils/stringutils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/stringutils/stringutils_test.go rename to cli/vendor/github.com/moby/moby/pkg/stringutils/stringutils_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/LICENSE.APACHE b/cli/vendor/github.com/moby/moby/pkg/symlink/LICENSE.APACHE similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/LICENSE.APACHE rename to cli/vendor/github.com/moby/moby/pkg/symlink/LICENSE.APACHE diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/LICENSE.BSD b/cli/vendor/github.com/moby/moby/pkg/symlink/LICENSE.BSD similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/LICENSE.BSD rename to cli/vendor/github.com/moby/moby/pkg/symlink/LICENSE.BSD diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/README.md b/cli/vendor/github.com/moby/moby/pkg/symlink/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/README.md rename to cli/vendor/github.com/moby/moby/pkg/symlink/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/fs.go b/cli/vendor/github.com/moby/moby/pkg/symlink/fs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/fs.go rename to cli/vendor/github.com/moby/moby/pkg/symlink/fs.go diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/fs_unix.go b/cli/vendor/github.com/moby/moby/pkg/symlink/fs_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/fs_unix.go rename to cli/vendor/github.com/moby/moby/pkg/symlink/fs_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/fs_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/symlink/fs_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/fs_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/symlink/fs_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/symlink/fs_windows.go b/cli/vendor/github.com/moby/moby/pkg/symlink/fs_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/symlink/fs_windows.go rename to cli/vendor/github.com/moby/moby/pkg/symlink/fs_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/README.md b/cli/vendor/github.com/moby/moby/pkg/sysinfo/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/README.md rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/numcpu.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/numcpu.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/numcpu.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/numcpu.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_linux.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_linux.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_windows.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_windows.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/numcpu_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux_test.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux_test.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_solaris.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_test.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_test.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_unix.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_unix.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_windows.go b/cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_windows.go rename to cli/vendor/github.com/moby/moby/pkg/sysinfo/sysinfo_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/chtimes.go b/cli/vendor/github.com/moby/moby/pkg/system/chtimes.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/chtimes.go rename to cli/vendor/github.com/moby/moby/pkg/system/chtimes.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/chtimes_test.go b/cli/vendor/github.com/moby/moby/pkg/system/chtimes_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/chtimes_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/chtimes_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/chtimes_unix.go b/cli/vendor/github.com/moby/moby/pkg/system/chtimes_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/chtimes_unix.go rename to cli/vendor/github.com/moby/moby/pkg/system/chtimes_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/chtimes_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/system/chtimes_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/chtimes_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/chtimes_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/chtimes_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/chtimes_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/chtimes_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/chtimes_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/chtimes_windows_test.go b/cli/vendor/github.com/moby/moby/pkg/system/chtimes_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/chtimes_windows_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/chtimes_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/errors.go b/cli/vendor/github.com/moby/moby/pkg/system/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/errors.go rename to cli/vendor/github.com/moby/moby/pkg/system/errors.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/events_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/events_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/events_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/events_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/exitcode.go b/cli/vendor/github.com/moby/moby/pkg/system/exitcode.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/exitcode.go rename to cli/vendor/github.com/moby/moby/pkg/system/exitcode.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/filesys.go b/cli/vendor/github.com/moby/moby/pkg/system/filesys.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/filesys.go rename to cli/vendor/github.com/moby/moby/pkg/system/filesys.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/filesys_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/filesys_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/filesys_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/filesys_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/lstat_unix.go b/cli/vendor/github.com/moby/moby/pkg/system/lstat_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/lstat_unix.go rename to cli/vendor/github.com/moby/moby/pkg/system/lstat_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/lstat_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/system/lstat_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/lstat_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/lstat_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/lstat_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/lstat_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/lstat_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/lstat_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/meminfo.go b/cli/vendor/github.com/moby/moby/pkg/system/meminfo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/meminfo.go rename to cli/vendor/github.com/moby/moby/pkg/system/meminfo.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/meminfo_linux.go b/cli/vendor/github.com/moby/moby/pkg/system/meminfo_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/meminfo_linux.go rename to cli/vendor/github.com/moby/moby/pkg/system/meminfo_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/meminfo_solaris.go b/cli/vendor/github.com/moby/moby/pkg/system/meminfo_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/meminfo_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/system/meminfo_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/meminfo_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/system/meminfo_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/meminfo_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/meminfo_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/meminfo_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/system/meminfo_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/meminfo_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/system/meminfo_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/meminfo_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/meminfo_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/meminfo_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/meminfo_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/mknod.go b/cli/vendor/github.com/moby/moby/pkg/system/mknod.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/mknod.go rename to cli/vendor/github.com/moby/moby/pkg/system/mknod.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/mknod_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/mknod_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/mknod_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/mknod_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/path_unix.go b/cli/vendor/github.com/moby/moby/pkg/system/path_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/path_unix.go rename to cli/vendor/github.com/moby/moby/pkg/system/path_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/path_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/path_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/path_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/path_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/path_windows_test.go b/cli/vendor/github.com/moby/moby/pkg/system/path_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/path_windows_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/path_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/process_unix.go b/cli/vendor/github.com/moby/moby/pkg/system/process_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/process_unix.go rename to cli/vendor/github.com/moby/moby/pkg/system/process_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_darwin.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_darwin.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_darwin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_linux.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_linux.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_openbsd.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_openbsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_openbsd.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_openbsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_solaris.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_unix.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_unix.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/stat_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/stat_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/stat_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/stat_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/syscall_unix.go b/cli/vendor/github.com/moby/moby/pkg/system/syscall_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/syscall_unix.go rename to cli/vendor/github.com/moby/moby/pkg/system/syscall_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/syscall_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/syscall_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/syscall_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/syscall_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/syscall_windows_test.go b/cli/vendor/github.com/moby/moby/pkg/system/syscall_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/syscall_windows_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/syscall_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/umask.go b/cli/vendor/github.com/moby/moby/pkg/system/umask.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/umask.go rename to cli/vendor/github.com/moby/moby/pkg/system/umask.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/umask_windows.go b/cli/vendor/github.com/moby/moby/pkg/system/umask_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/umask_windows.go rename to cli/vendor/github.com/moby/moby/pkg/system/umask_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/utimes_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/system/utimes_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/utimes_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/system/utimes_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/utimes_linux.go b/cli/vendor/github.com/moby/moby/pkg/system/utimes_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/utimes_linux.go rename to cli/vendor/github.com/moby/moby/pkg/system/utimes_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/utimes_unix_test.go b/cli/vendor/github.com/moby/moby/pkg/system/utimes_unix_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/utimes_unix_test.go rename to cli/vendor/github.com/moby/moby/pkg/system/utimes_unix_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/utimes_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/system/utimes_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/utimes_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/system/utimes_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/xattrs_linux.go b/cli/vendor/github.com/moby/moby/pkg/system/xattrs_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/xattrs_linux.go rename to cli/vendor/github.com/moby/moby/pkg/system/xattrs_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/system/xattrs_unsupported.go b/cli/vendor/github.com/moby/moby/pkg/system/xattrs_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/system/xattrs_unsupported.go rename to cli/vendor/github.com/moby/moby/pkg/system/xattrs_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tailfile/tailfile.go b/cli/vendor/github.com/moby/moby/pkg/tailfile/tailfile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tailfile/tailfile.go rename to cli/vendor/github.com/moby/moby/pkg/tailfile/tailfile.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tailfile/tailfile_test.go b/cli/vendor/github.com/moby/moby/pkg/tailfile/tailfile_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tailfile/tailfile_test.go rename to cli/vendor/github.com/moby/moby/pkg/tailfile/tailfile_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/builder_context.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/builder_context.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/builder_context.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/builder_context.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/builder_context_test.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/builder_context_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/builder_context_test.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/builder_context_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums_test.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums_test.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/fileinfosums_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/tarsum.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/tarsum.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/tarsum.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/tarsum.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/tarsum_spec.md b/cli/vendor/github.com/moby/moby/pkg/tarsum/tarsum_spec.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/tarsum_spec.md rename to cli/vendor/github.com/moby/moby/pkg/tarsum/tarsum_spec.md diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/tarsum_test.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/tarsum_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/tarsum_test.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/tarsum_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/json diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/46af0962ab5afeb5ce6740d4d91652e69206fc991fd5328c1a94d364ad00e457/layer.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/json diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/511136ea3c5a64f264b78b5433614aec563103b4d4702f3ba7d4d2698e22c158/layer.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-0.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-0.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-0.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-0.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-1.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-1.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-1.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-1.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-2.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-2.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-2.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-2.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-3.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-3.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-3.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/collision/collision-3.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/json b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/json similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/json rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/json diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/layer.tar b/cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/layer.tar similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/layer.tar rename to cli/vendor/github.com/moby/moby/pkg/tarsum/testdata/xattr/layer.tar diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/versioning.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/versioning.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/versioning.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/versioning.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/versioning_test.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/versioning_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/versioning_test.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/versioning_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tarsum/writercloser.go b/cli/vendor/github.com/moby/moby/pkg/tarsum/writercloser.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tarsum/writercloser.go rename to cli/vendor/github.com/moby/moby/pkg/tarsum/writercloser.go diff --git a/fn/vendor/github.com/moby/moby/pkg/templates/templates.go b/cli/vendor/github.com/moby/moby/pkg/templates/templates.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/templates/templates.go rename to cli/vendor/github.com/moby/moby/pkg/templates/templates.go diff --git a/fn/vendor/github.com/moby/moby/pkg/templates/templates_test.go b/cli/vendor/github.com/moby/moby/pkg/templates/templates_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/templates/templates_test.go rename to cli/vendor/github.com/moby/moby/pkg/templates/templates_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/ascii.go b/cli/vendor/github.com/moby/moby/pkg/term/ascii.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/ascii.go rename to cli/vendor/github.com/moby/moby/pkg/term/ascii.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/ascii_test.go b/cli/vendor/github.com/moby/moby/pkg/term/ascii_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/ascii_test.go rename to cli/vendor/github.com/moby/moby/pkg/term/ascii_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/tc_linux_cgo.go b/cli/vendor/github.com/moby/moby/pkg/term/tc_linux_cgo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/tc_linux_cgo.go rename to cli/vendor/github.com/moby/moby/pkg/term/tc_linux_cgo.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/tc_other.go b/cli/vendor/github.com/moby/moby/pkg/term/tc_other.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/tc_other.go rename to cli/vendor/github.com/moby/moby/pkg/term/tc_other.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/tc_solaris_cgo.go b/cli/vendor/github.com/moby/moby/pkg/term/tc_solaris_cgo.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/tc_solaris_cgo.go rename to cli/vendor/github.com/moby/moby/pkg/term/tc_solaris_cgo.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/term.go b/cli/vendor/github.com/moby/moby/pkg/term/term.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/term.go rename to cli/vendor/github.com/moby/moby/pkg/term/term.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/term_solaris.go b/cli/vendor/github.com/moby/moby/pkg/term/term_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/term_solaris.go rename to cli/vendor/github.com/moby/moby/pkg/term/term_solaris.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/term_unix.go b/cli/vendor/github.com/moby/moby/pkg/term/term_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/term_unix.go rename to cli/vendor/github.com/moby/moby/pkg/term/term_unix.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/term_windows.go b/cli/vendor/github.com/moby/moby/pkg/term/term_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/term_windows.go rename to cli/vendor/github.com/moby/moby/pkg/term/term_windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/termios_darwin.go b/cli/vendor/github.com/moby/moby/pkg/term/termios_darwin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/termios_darwin.go rename to cli/vendor/github.com/moby/moby/pkg/term/termios_darwin.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/termios_freebsd.go b/cli/vendor/github.com/moby/moby/pkg/term/termios_freebsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/termios_freebsd.go rename to cli/vendor/github.com/moby/moby/pkg/term/termios_freebsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/termios_linux.go b/cli/vendor/github.com/moby/moby/pkg/term/termios_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/termios_linux.go rename to cli/vendor/github.com/moby/moby/pkg/term/termios_linux.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/termios_openbsd.go b/cli/vendor/github.com/moby/moby/pkg/term/termios_openbsd.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/termios_openbsd.go rename to cli/vendor/github.com/moby/moby/pkg/term/termios_openbsd.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/windows/ansi_reader.go b/cli/vendor/github.com/moby/moby/pkg/term/windows/ansi_reader.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/windows/ansi_reader.go rename to cli/vendor/github.com/moby/moby/pkg/term/windows/ansi_reader.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/windows/ansi_writer.go b/cli/vendor/github.com/moby/moby/pkg/term/windows/ansi_writer.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/windows/ansi_writer.go rename to cli/vendor/github.com/moby/moby/pkg/term/windows/ansi_writer.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/windows/console.go b/cli/vendor/github.com/moby/moby/pkg/term/windows/console.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/windows/console.go rename to cli/vendor/github.com/moby/moby/pkg/term/windows/console.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/windows/windows.go b/cli/vendor/github.com/moby/moby/pkg/term/windows/windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/windows/windows.go rename to cli/vendor/github.com/moby/moby/pkg/term/windows/windows.go diff --git a/fn/vendor/github.com/moby/moby/pkg/term/windows/windows_test.go b/cli/vendor/github.com/moby/moby/pkg/term/windows/windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/term/windows/windows_test.go rename to cli/vendor/github.com/moby/moby/pkg/term/windows/windows_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/assert/assert.go b/cli/vendor/github.com/moby/moby/pkg/testutil/assert/assert.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/assert/assert.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/assert/assert.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/cmd/command.go b/cli/vendor/github.com/moby/moby/pkg/testutil/cmd/command.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/cmd/command.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/cmd/command.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/cmd/command_test.go b/cli/vendor/github.com/moby/moby/pkg/testutil/cmd/command_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/cmd/command_test.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/cmd/command_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/golden/golden.go b/cli/vendor/github.com/moby/moby/pkg/testutil/golden/golden.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/golden/golden.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/golden/golden.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/pkg.go b/cli/vendor/github.com/moby/moby/pkg/testutil/pkg.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/pkg.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/pkg.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/tempfile/tempfile.go b/cli/vendor/github.com/moby/moby/pkg/testutil/tempfile/tempfile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/tempfile/tempfile.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/tempfile/tempfile.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/utils.go b/cli/vendor/github.com/moby/moby/pkg/testutil/utils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/utils.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/utils.go diff --git a/fn/vendor/github.com/moby/moby/pkg/testutil/utils_test.go b/cli/vendor/github.com/moby/moby/pkg/testutil/utils_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/testutil/utils_test.go rename to cli/vendor/github.com/moby/moby/pkg/testutil/utils_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone.go b/cli/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone.go rename to cli/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go16.go b/cli/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go16.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go16.go rename to cli/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go16.go diff --git a/fn/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go17.go b/cli/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go17.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go17.go rename to cli/vendor/github.com/moby/moby/pkg/tlsconfig/tlsconfig_clone_go17.go diff --git a/fn/vendor/github.com/moby/moby/pkg/truncindex/truncindex.go b/cli/vendor/github.com/moby/moby/pkg/truncindex/truncindex.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/truncindex/truncindex.go rename to cli/vendor/github.com/moby/moby/pkg/truncindex/truncindex.go diff --git a/fn/vendor/github.com/moby/moby/pkg/truncindex/truncindex_test.go b/cli/vendor/github.com/moby/moby/pkg/truncindex/truncindex_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/truncindex/truncindex_test.go rename to cli/vendor/github.com/moby/moby/pkg/truncindex/truncindex_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/urlutil/urlutil.go b/cli/vendor/github.com/moby/moby/pkg/urlutil/urlutil.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/urlutil/urlutil.go rename to cli/vendor/github.com/moby/moby/pkg/urlutil/urlutil.go diff --git a/fn/vendor/github.com/moby/moby/pkg/urlutil/urlutil_test.go b/cli/vendor/github.com/moby/moby/pkg/urlutil/urlutil_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/urlutil/urlutil_test.go rename to cli/vendor/github.com/moby/moby/pkg/urlutil/urlutil_test.go diff --git a/fn/vendor/github.com/moby/moby/pkg/useragent/README.md b/cli/vendor/github.com/moby/moby/pkg/useragent/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/useragent/README.md rename to cli/vendor/github.com/moby/moby/pkg/useragent/README.md diff --git a/fn/vendor/github.com/moby/moby/pkg/useragent/useragent.go b/cli/vendor/github.com/moby/moby/pkg/useragent/useragent.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/useragent/useragent.go rename to cli/vendor/github.com/moby/moby/pkg/useragent/useragent.go diff --git a/fn/vendor/github.com/moby/moby/pkg/useragent/useragent_test.go b/cli/vendor/github.com/moby/moby/pkg/useragent/useragent_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/pkg/useragent/useragent_test.go rename to cli/vendor/github.com/moby/moby/pkg/useragent/useragent_test.go diff --git a/fn/vendor/github.com/moby/moby/plugin/backend_linux.go b/cli/vendor/github.com/moby/moby/plugin/backend_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/backend_linux.go rename to cli/vendor/github.com/moby/moby/plugin/backend_linux.go diff --git a/fn/vendor/github.com/moby/moby/plugin/backend_unsupported.go b/cli/vendor/github.com/moby/moby/plugin/backend_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/backend_unsupported.go rename to cli/vendor/github.com/moby/moby/plugin/backend_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/plugin/blobstore.go b/cli/vendor/github.com/moby/moby/plugin/blobstore.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/blobstore.go rename to cli/vendor/github.com/moby/moby/plugin/blobstore.go diff --git a/fn/vendor/github.com/moby/moby/plugin/defs.go b/cli/vendor/github.com/moby/moby/plugin/defs.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/defs.go rename to cli/vendor/github.com/moby/moby/plugin/defs.go diff --git a/fn/vendor/github.com/moby/moby/plugin/manager.go b/cli/vendor/github.com/moby/moby/plugin/manager.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/manager.go rename to cli/vendor/github.com/moby/moby/plugin/manager.go diff --git a/fn/vendor/github.com/moby/moby/plugin/manager_linux.go b/cli/vendor/github.com/moby/moby/plugin/manager_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/manager_linux.go rename to cli/vendor/github.com/moby/moby/plugin/manager_linux.go diff --git a/fn/vendor/github.com/moby/moby/plugin/manager_solaris.go b/cli/vendor/github.com/moby/moby/plugin/manager_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/manager_solaris.go rename to cli/vendor/github.com/moby/moby/plugin/manager_solaris.go diff --git a/fn/vendor/github.com/moby/moby/plugin/manager_test.go b/cli/vendor/github.com/moby/moby/plugin/manager_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/manager_test.go rename to cli/vendor/github.com/moby/moby/plugin/manager_test.go diff --git a/fn/vendor/github.com/moby/moby/plugin/manager_windows.go b/cli/vendor/github.com/moby/moby/plugin/manager_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/manager_windows.go rename to cli/vendor/github.com/moby/moby/plugin/manager_windows.go diff --git a/fn/vendor/github.com/moby/moby/plugin/store.go b/cli/vendor/github.com/moby/moby/plugin/store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/store.go rename to cli/vendor/github.com/moby/moby/plugin/store.go diff --git a/fn/vendor/github.com/moby/moby/plugin/store_test.go b/cli/vendor/github.com/moby/moby/plugin/store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/store_test.go rename to cli/vendor/github.com/moby/moby/plugin/store_test.go diff --git a/fn/vendor/github.com/moby/moby/plugin/v2/plugin.go b/cli/vendor/github.com/moby/moby/plugin/v2/plugin.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/v2/plugin.go rename to cli/vendor/github.com/moby/moby/plugin/v2/plugin.go diff --git a/fn/vendor/github.com/moby/moby/plugin/v2/plugin_linux.go b/cli/vendor/github.com/moby/moby/plugin/v2/plugin_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/v2/plugin_linux.go rename to cli/vendor/github.com/moby/moby/plugin/v2/plugin_linux.go diff --git a/fn/vendor/github.com/moby/moby/plugin/v2/plugin_unsupported.go b/cli/vendor/github.com/moby/moby/plugin/v2/plugin_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/v2/plugin_unsupported.go rename to cli/vendor/github.com/moby/moby/plugin/v2/plugin_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/plugin/v2/settable.go b/cli/vendor/github.com/moby/moby/plugin/v2/settable.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/v2/settable.go rename to cli/vendor/github.com/moby/moby/plugin/v2/settable.go diff --git a/fn/vendor/github.com/moby/moby/plugin/v2/settable_test.go b/cli/vendor/github.com/moby/moby/plugin/v2/settable_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/plugin/v2/settable_test.go rename to cli/vendor/github.com/moby/moby/plugin/v2/settable_test.go diff --git a/fn/vendor/github.com/moby/moby/poule.yml b/cli/vendor/github.com/moby/moby/poule.yml similarity index 100% rename from fn/vendor/github.com/moby/moby/poule.yml rename to cli/vendor/github.com/moby/moby/poule.yml diff --git a/fn/vendor/github.com/moby/moby/profiles/apparmor/apparmor.go b/cli/vendor/github.com/moby/moby/profiles/apparmor/apparmor.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/apparmor/apparmor.go rename to cli/vendor/github.com/moby/moby/profiles/apparmor/apparmor.go diff --git a/fn/vendor/github.com/moby/moby/profiles/apparmor/template.go b/cli/vendor/github.com/moby/moby/profiles/apparmor/template.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/apparmor/template.go rename to cli/vendor/github.com/moby/moby/profiles/apparmor/template.go diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/default.json b/cli/vendor/github.com/moby/moby/profiles/seccomp/default.json similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/default.json rename to cli/vendor/github.com/moby/moby/profiles/seccomp/default.json diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/fixtures/example.json b/cli/vendor/github.com/moby/moby/profiles/seccomp/fixtures/example.json similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/fixtures/example.json rename to cli/vendor/github.com/moby/moby/profiles/seccomp/fixtures/example.json diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/generate.go b/cli/vendor/github.com/moby/moby/profiles/seccomp/generate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/generate.go rename to cli/vendor/github.com/moby/moby/profiles/seccomp/generate.go diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp.go b/cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp.go rename to cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp.go diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp_default.go b/cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp_default.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp_default.go rename to cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp_default.go diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp_test.go b/cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp_test.go rename to cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp_test.go diff --git a/fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp_unsupported.go b/cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/profiles/seccomp/seccomp_unsupported.go rename to cli/vendor/github.com/moby/moby/profiles/seccomp/seccomp_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/project/ARM.md b/cli/vendor/github.com/moby/moby/project/ARM.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/ARM.md rename to cli/vendor/github.com/moby/moby/project/ARM.md diff --git a/fn/vendor/github.com/moby/moby/project/BRANCHES-AND-TAGS.md b/cli/vendor/github.com/moby/moby/project/BRANCHES-AND-TAGS.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/BRANCHES-AND-TAGS.md rename to cli/vendor/github.com/moby/moby/project/BRANCHES-AND-TAGS.md diff --git a/fn/vendor/github.com/moby/moby/project/CONTRIBUTING.md b/cli/vendor/github.com/moby/moby/project/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/CONTRIBUTING.md rename to cli/vendor/github.com/moby/moby/project/CONTRIBUTING.md diff --git a/fn/vendor/github.com/moby/moby/project/GOVERNANCE.md b/cli/vendor/github.com/moby/moby/project/GOVERNANCE.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/GOVERNANCE.md rename to cli/vendor/github.com/moby/moby/project/GOVERNANCE.md diff --git a/fn/vendor/github.com/moby/moby/project/IRC-ADMINISTRATION.md b/cli/vendor/github.com/moby/moby/project/IRC-ADMINISTRATION.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/IRC-ADMINISTRATION.md rename to cli/vendor/github.com/moby/moby/project/IRC-ADMINISTRATION.md diff --git a/fn/vendor/github.com/moby/moby/project/ISSUE-TRIAGE.md b/cli/vendor/github.com/moby/moby/project/ISSUE-TRIAGE.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/ISSUE-TRIAGE.md rename to cli/vendor/github.com/moby/moby/project/ISSUE-TRIAGE.md diff --git a/fn/vendor/github.com/moby/moby/project/PACKAGE-REPO-MAINTENANCE.md b/cli/vendor/github.com/moby/moby/project/PACKAGE-REPO-MAINTENANCE.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/PACKAGE-REPO-MAINTENANCE.md rename to cli/vendor/github.com/moby/moby/project/PACKAGE-REPO-MAINTENANCE.md diff --git a/fn/vendor/github.com/moby/moby/project/PACKAGERS.md b/cli/vendor/github.com/moby/moby/project/PACKAGERS.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/PACKAGERS.md rename to cli/vendor/github.com/moby/moby/project/PACKAGERS.md diff --git a/fn/vendor/github.com/moby/moby/project/PATCH-RELEASES.md b/cli/vendor/github.com/moby/moby/project/PATCH-RELEASES.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/PATCH-RELEASES.md rename to cli/vendor/github.com/moby/moby/project/PATCH-RELEASES.md diff --git a/fn/vendor/github.com/moby/moby/project/PRINCIPLES.md b/cli/vendor/github.com/moby/moby/project/PRINCIPLES.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/PRINCIPLES.md rename to cli/vendor/github.com/moby/moby/project/PRINCIPLES.md diff --git a/fn/vendor/github.com/moby/moby/project/README.md b/cli/vendor/github.com/moby/moby/project/README.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/README.md rename to cli/vendor/github.com/moby/moby/project/README.md diff --git a/fn/vendor/github.com/moby/moby/project/RELEASE-CHECKLIST.md b/cli/vendor/github.com/moby/moby/project/RELEASE-CHECKLIST.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/RELEASE-CHECKLIST.md rename to cli/vendor/github.com/moby/moby/project/RELEASE-CHECKLIST.md diff --git a/fn/vendor/github.com/moby/moby/project/RELEASE-PROCESS.md b/cli/vendor/github.com/moby/moby/project/RELEASE-PROCESS.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/RELEASE-PROCESS.md rename to cli/vendor/github.com/moby/moby/project/RELEASE-PROCESS.md diff --git a/fn/vendor/github.com/moby/moby/project/REVIEWING.md b/cli/vendor/github.com/moby/moby/project/REVIEWING.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/REVIEWING.md rename to cli/vendor/github.com/moby/moby/project/REVIEWING.md diff --git a/fn/vendor/github.com/moby/moby/project/TOOLS.md b/cli/vendor/github.com/moby/moby/project/TOOLS.md similarity index 100% rename from fn/vendor/github.com/moby/moby/project/TOOLS.md rename to cli/vendor/github.com/moby/moby/project/TOOLS.md diff --git a/fn/vendor/github.com/moby/moby/reference/store.go b/cli/vendor/github.com/moby/moby/reference/store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/reference/store.go rename to cli/vendor/github.com/moby/moby/reference/store.go diff --git a/fn/vendor/github.com/moby/moby/reference/store_test.go b/cli/vendor/github.com/moby/moby/reference/store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/reference/store_test.go rename to cli/vendor/github.com/moby/moby/reference/store_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/auth.go b/cli/vendor/github.com/moby/moby/registry/auth.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/auth.go rename to cli/vendor/github.com/moby/moby/registry/auth.go diff --git a/fn/vendor/github.com/moby/moby/registry/auth_test.go b/cli/vendor/github.com/moby/moby/registry/auth_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/auth_test.go rename to cli/vendor/github.com/moby/moby/registry/auth_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/config.go b/cli/vendor/github.com/moby/moby/registry/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/config.go rename to cli/vendor/github.com/moby/moby/registry/config.go diff --git a/fn/vendor/github.com/moby/moby/registry/config_test.go b/cli/vendor/github.com/moby/moby/registry/config_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/config_test.go rename to cli/vendor/github.com/moby/moby/registry/config_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/config_unix.go b/cli/vendor/github.com/moby/moby/registry/config_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/config_unix.go rename to cli/vendor/github.com/moby/moby/registry/config_unix.go diff --git a/fn/vendor/github.com/moby/moby/registry/config_windows.go b/cli/vendor/github.com/moby/moby/registry/config_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/config_windows.go rename to cli/vendor/github.com/moby/moby/registry/config_windows.go diff --git a/fn/vendor/github.com/moby/moby/registry/endpoint_test.go b/cli/vendor/github.com/moby/moby/registry/endpoint_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/endpoint_test.go rename to cli/vendor/github.com/moby/moby/registry/endpoint_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/endpoint_v1.go b/cli/vendor/github.com/moby/moby/registry/endpoint_v1.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/endpoint_v1.go rename to cli/vendor/github.com/moby/moby/registry/endpoint_v1.go diff --git a/fn/vendor/github.com/moby/moby/registry/registry.go b/cli/vendor/github.com/moby/moby/registry/registry.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/registry.go rename to cli/vendor/github.com/moby/moby/registry/registry.go diff --git a/fn/vendor/github.com/moby/moby/registry/registry_mock_test.go b/cli/vendor/github.com/moby/moby/registry/registry_mock_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/registry_mock_test.go rename to cli/vendor/github.com/moby/moby/registry/registry_mock_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/registry_test.go b/cli/vendor/github.com/moby/moby/registry/registry_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/registry_test.go rename to cli/vendor/github.com/moby/moby/registry/registry_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/service.go b/cli/vendor/github.com/moby/moby/registry/service.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/service.go rename to cli/vendor/github.com/moby/moby/registry/service.go diff --git a/fn/vendor/github.com/moby/moby/registry/service_v1.go b/cli/vendor/github.com/moby/moby/registry/service_v1.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/service_v1.go rename to cli/vendor/github.com/moby/moby/registry/service_v1.go diff --git a/fn/vendor/github.com/moby/moby/registry/service_v1_test.go b/cli/vendor/github.com/moby/moby/registry/service_v1_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/service_v1_test.go rename to cli/vendor/github.com/moby/moby/registry/service_v1_test.go diff --git a/fn/vendor/github.com/moby/moby/registry/service_v2.go b/cli/vendor/github.com/moby/moby/registry/service_v2.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/service_v2.go rename to cli/vendor/github.com/moby/moby/registry/service_v2.go diff --git a/fn/vendor/github.com/moby/moby/registry/session.go b/cli/vendor/github.com/moby/moby/registry/session.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/session.go rename to cli/vendor/github.com/moby/moby/registry/session.go diff --git a/fn/vendor/github.com/moby/moby/registry/types.go b/cli/vendor/github.com/moby/moby/registry/types.go similarity index 100% rename from fn/vendor/github.com/moby/moby/registry/types.go rename to cli/vendor/github.com/moby/moby/registry/types.go diff --git a/fn/vendor/github.com/moby/moby/restartmanager/restartmanager.go b/cli/vendor/github.com/moby/moby/restartmanager/restartmanager.go similarity index 100% rename from fn/vendor/github.com/moby/moby/restartmanager/restartmanager.go rename to cli/vendor/github.com/moby/moby/restartmanager/restartmanager.go diff --git a/fn/vendor/github.com/moby/moby/restartmanager/restartmanager_test.go b/cli/vendor/github.com/moby/moby/restartmanager/restartmanager_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/restartmanager/restartmanager_test.go rename to cli/vendor/github.com/moby/moby/restartmanager/restartmanager_test.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/config.go b/cli/vendor/github.com/moby/moby/runconfig/config.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/config.go rename to cli/vendor/github.com/moby/moby/runconfig/config.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/config_test.go b/cli/vendor/github.com/moby/moby/runconfig/config_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/config_test.go rename to cli/vendor/github.com/moby/moby/runconfig/config_test.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/config_unix.go b/cli/vendor/github.com/moby/moby/runconfig/config_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/config_unix.go rename to cli/vendor/github.com/moby/moby/runconfig/config_unix.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/config_windows.go b/cli/vendor/github.com/moby/moby/runconfig/config_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/config_windows.go rename to cli/vendor/github.com/moby/moby/runconfig/config_windows.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/errors.go b/cli/vendor/github.com/moby/moby/runconfig/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/errors.go rename to cli/vendor/github.com/moby/moby/runconfig/errors.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_14.json b/cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_14.json similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_14.json rename to cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_14.json diff --git a/fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_17.json b/cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_17.json similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_17.json rename to cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_17.json diff --git a/fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_19.json b/cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_19.json similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_19.json rename to cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_config_1_19.json diff --git a/fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_14.json b/cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_14.json similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_14.json rename to cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_14.json diff --git a/fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_19.json b/cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_19.json similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_19.json rename to cli/vendor/github.com/moby/moby/runconfig/fixtures/unix/container_hostconfig_1_19.json diff --git a/fn/vendor/github.com/moby/moby/runconfig/fixtures/windows/container_config_1_19.json b/cli/vendor/github.com/moby/moby/runconfig/fixtures/windows/container_config_1_19.json similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/fixtures/windows/container_config_1_19.json rename to cli/vendor/github.com/moby/moby/runconfig/fixtures/windows/container_config_1_19.json diff --git a/fn/vendor/github.com/moby/moby/runconfig/hostconfig.go b/cli/vendor/github.com/moby/moby/runconfig/hostconfig.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/hostconfig.go rename to cli/vendor/github.com/moby/moby/runconfig/hostconfig.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/hostconfig_solaris.go b/cli/vendor/github.com/moby/moby/runconfig/hostconfig_solaris.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/hostconfig_solaris.go rename to cli/vendor/github.com/moby/moby/runconfig/hostconfig_solaris.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/hostconfig_test.go b/cli/vendor/github.com/moby/moby/runconfig/hostconfig_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/hostconfig_test.go rename to cli/vendor/github.com/moby/moby/runconfig/hostconfig_test.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/hostconfig_unix.go b/cli/vendor/github.com/moby/moby/runconfig/hostconfig_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/hostconfig_unix.go rename to cli/vendor/github.com/moby/moby/runconfig/hostconfig_unix.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/hostconfig_windows.go b/cli/vendor/github.com/moby/moby/runconfig/hostconfig_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/hostconfig_windows.go rename to cli/vendor/github.com/moby/moby/runconfig/hostconfig_windows.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/hostconfig_windows_test.go b/cli/vendor/github.com/moby/moby/runconfig/hostconfig_windows_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/hostconfig_windows_test.go rename to cli/vendor/github.com/moby/moby/runconfig/hostconfig_windows_test.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/opts/envfile.go b/cli/vendor/github.com/moby/moby/runconfig/opts/envfile.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/opts/envfile.go rename to cli/vendor/github.com/moby/moby/runconfig/opts/envfile.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/opts/envfile_test.go b/cli/vendor/github.com/moby/moby/runconfig/opts/envfile_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/opts/envfile_test.go rename to cli/vendor/github.com/moby/moby/runconfig/opts/envfile_test.go diff --git a/fn/vendor/github.com/moby/moby/runconfig/opts/parse.go b/cli/vendor/github.com/moby/moby/runconfig/opts/parse.go similarity index 100% rename from fn/vendor/github.com/moby/moby/runconfig/opts/parse.go rename to cli/vendor/github.com/moby/moby/runconfig/opts/parse.go diff --git a/fn/vendor/github.com/moby/moby/vendor.conf b/cli/vendor/github.com/moby/moby/vendor.conf similarity index 100% rename from fn/vendor/github.com/moby/moby/vendor.conf rename to cli/vendor/github.com/moby/moby/vendor.conf diff --git a/fn/vendor/github.com/moby/moby/volume/drivers/adapter.go b/cli/vendor/github.com/moby/moby/volume/drivers/adapter.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/drivers/adapter.go rename to cli/vendor/github.com/moby/moby/volume/drivers/adapter.go diff --git a/fn/vendor/github.com/moby/moby/volume/drivers/extpoint.go b/cli/vendor/github.com/moby/moby/volume/drivers/extpoint.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/drivers/extpoint.go rename to cli/vendor/github.com/moby/moby/volume/drivers/extpoint.go diff --git a/fn/vendor/github.com/moby/moby/volume/drivers/extpoint_test.go b/cli/vendor/github.com/moby/moby/volume/drivers/extpoint_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/drivers/extpoint_test.go rename to cli/vendor/github.com/moby/moby/volume/drivers/extpoint_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/drivers/proxy.go b/cli/vendor/github.com/moby/moby/volume/drivers/proxy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/drivers/proxy.go rename to cli/vendor/github.com/moby/moby/volume/drivers/proxy.go diff --git a/fn/vendor/github.com/moby/moby/volume/drivers/proxy_test.go b/cli/vendor/github.com/moby/moby/volume/drivers/proxy_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/drivers/proxy_test.go rename to cli/vendor/github.com/moby/moby/volume/drivers/proxy_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/local/local.go b/cli/vendor/github.com/moby/moby/volume/local/local.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/local/local.go rename to cli/vendor/github.com/moby/moby/volume/local/local.go diff --git a/fn/vendor/github.com/moby/moby/volume/local/local_test.go b/cli/vendor/github.com/moby/moby/volume/local/local_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/local/local_test.go rename to cli/vendor/github.com/moby/moby/volume/local/local_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/local/local_unix.go b/cli/vendor/github.com/moby/moby/volume/local/local_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/local/local_unix.go rename to cli/vendor/github.com/moby/moby/volume/local/local_unix.go diff --git a/fn/vendor/github.com/moby/moby/volume/local/local_windows.go b/cli/vendor/github.com/moby/moby/volume/local/local_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/local/local_windows.go rename to cli/vendor/github.com/moby/moby/volume/local/local_windows.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/db.go b/cli/vendor/github.com/moby/moby/volume/store/db.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/db.go rename to cli/vendor/github.com/moby/moby/volume/store/db.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/errors.go b/cli/vendor/github.com/moby/moby/volume/store/errors.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/errors.go rename to cli/vendor/github.com/moby/moby/volume/store/errors.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/restore.go b/cli/vendor/github.com/moby/moby/volume/store/restore.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/restore.go rename to cli/vendor/github.com/moby/moby/volume/store/restore.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/store.go b/cli/vendor/github.com/moby/moby/volume/store/store.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/store.go rename to cli/vendor/github.com/moby/moby/volume/store/store.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/store_test.go b/cli/vendor/github.com/moby/moby/volume/store/store_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/store_test.go rename to cli/vendor/github.com/moby/moby/volume/store/store_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/store_unix.go b/cli/vendor/github.com/moby/moby/volume/store/store_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/store_unix.go rename to cli/vendor/github.com/moby/moby/volume/store/store_unix.go diff --git a/fn/vendor/github.com/moby/moby/volume/store/store_windows.go b/cli/vendor/github.com/moby/moby/volume/store/store_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/store/store_windows.go rename to cli/vendor/github.com/moby/moby/volume/store/store_windows.go diff --git a/fn/vendor/github.com/moby/moby/volume/testutils/testutils.go b/cli/vendor/github.com/moby/moby/volume/testutils/testutils.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/testutils/testutils.go rename to cli/vendor/github.com/moby/moby/volume/testutils/testutils.go diff --git a/fn/vendor/github.com/moby/moby/volume/validate.go b/cli/vendor/github.com/moby/moby/volume/validate.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/validate.go rename to cli/vendor/github.com/moby/moby/volume/validate.go diff --git a/fn/vendor/github.com/moby/moby/volume/validate_test.go b/cli/vendor/github.com/moby/moby/volume/validate_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/validate_test.go rename to cli/vendor/github.com/moby/moby/volume/validate_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/validate_test_unix.go b/cli/vendor/github.com/moby/moby/volume/validate_test_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/validate_test_unix.go rename to cli/vendor/github.com/moby/moby/volume/validate_test_unix.go diff --git a/fn/vendor/github.com/moby/moby/volume/validate_test_windows.go b/cli/vendor/github.com/moby/moby/volume/validate_test_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/validate_test_windows.go rename to cli/vendor/github.com/moby/moby/volume/validate_test_windows.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume.go b/cli/vendor/github.com/moby/moby/volume/volume.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume.go rename to cli/vendor/github.com/moby/moby/volume/volume.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_copy.go b/cli/vendor/github.com/moby/moby/volume/volume_copy.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_copy.go rename to cli/vendor/github.com/moby/moby/volume/volume_copy.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_copy_unix.go b/cli/vendor/github.com/moby/moby/volume/volume_copy_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_copy_unix.go rename to cli/vendor/github.com/moby/moby/volume/volume_copy_unix.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_copy_windows.go b/cli/vendor/github.com/moby/moby/volume/volume_copy_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_copy_windows.go rename to cli/vendor/github.com/moby/moby/volume/volume_copy_windows.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_linux.go b/cli/vendor/github.com/moby/moby/volume/volume_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_linux.go rename to cli/vendor/github.com/moby/moby/volume/volume_linux.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_linux_test.go b/cli/vendor/github.com/moby/moby/volume/volume_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_linux_test.go rename to cli/vendor/github.com/moby/moby/volume/volume_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_propagation_linux.go b/cli/vendor/github.com/moby/moby/volume/volume_propagation_linux.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_propagation_linux.go rename to cli/vendor/github.com/moby/moby/volume/volume_propagation_linux.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_propagation_linux_test.go b/cli/vendor/github.com/moby/moby/volume/volume_propagation_linux_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_propagation_linux_test.go rename to cli/vendor/github.com/moby/moby/volume/volume_propagation_linux_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_propagation_unsupported.go b/cli/vendor/github.com/moby/moby/volume/volume_propagation_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_propagation_unsupported.go rename to cli/vendor/github.com/moby/moby/volume/volume_propagation_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_test.go b/cli/vendor/github.com/moby/moby/volume/volume_test.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_test.go rename to cli/vendor/github.com/moby/moby/volume/volume_test.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_unix.go b/cli/vendor/github.com/moby/moby/volume/volume_unix.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_unix.go rename to cli/vendor/github.com/moby/moby/volume/volume_unix.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_unsupported.go b/cli/vendor/github.com/moby/moby/volume/volume_unsupported.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_unsupported.go rename to cli/vendor/github.com/moby/moby/volume/volume_unsupported.go diff --git a/fn/vendor/github.com/moby/moby/volume/volume_windows.go b/cli/vendor/github.com/moby/moby/volume/volume_windows.go similarity index 100% rename from fn/vendor/github.com/moby/moby/volume/volume_windows.go rename to cli/vendor/github.com/moby/moby/volume/volume_windows.go diff --git a/fn/vendor/github.com/onsi/gomega/.gitignore b/cli/vendor/github.com/onsi/gomega/.gitignore similarity index 100% rename from fn/vendor/github.com/onsi/gomega/.gitignore rename to cli/vendor/github.com/onsi/gomega/.gitignore diff --git a/fn/vendor/github.com/onsi/gomega/.travis.yml b/cli/vendor/github.com/onsi/gomega/.travis.yml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/.travis.yml rename to cli/vendor/github.com/onsi/gomega/.travis.yml diff --git a/fn/vendor/github.com/onsi/gomega/CHANGELOG.md b/cli/vendor/github.com/onsi/gomega/CHANGELOG.md similarity index 100% rename from fn/vendor/github.com/onsi/gomega/CHANGELOG.md rename to cli/vendor/github.com/onsi/gomega/CHANGELOG.md diff --git a/fn/vendor/github.com/onsi/gomega/CONTRIBUTING.md b/cli/vendor/github.com/onsi/gomega/CONTRIBUTING.md similarity index 100% rename from fn/vendor/github.com/onsi/gomega/CONTRIBUTING.md rename to cli/vendor/github.com/onsi/gomega/CONTRIBUTING.md diff --git a/fn/vendor/github.com/onsi/gomega/LICENSE b/cli/vendor/github.com/onsi/gomega/LICENSE similarity index 100% rename from fn/vendor/github.com/onsi/gomega/LICENSE rename to cli/vendor/github.com/onsi/gomega/LICENSE diff --git a/fn/vendor/github.com/onsi/gomega/README.md b/cli/vendor/github.com/onsi/gomega/README.md similarity index 100% rename from fn/vendor/github.com/onsi/gomega/README.md rename to cli/vendor/github.com/onsi/gomega/README.md diff --git a/fn/vendor/github.com/onsi/gomega/format/format.go b/cli/vendor/github.com/onsi/gomega/format/format.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/format/format.go rename to cli/vendor/github.com/onsi/gomega/format/format.go diff --git a/fn/vendor/github.com/onsi/gomega/format/format_suite_test.go b/cli/vendor/github.com/onsi/gomega/format/format_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/format/format_suite_test.go rename to cli/vendor/github.com/onsi/gomega/format/format_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/format/format_test.go b/cli/vendor/github.com/onsi/gomega/format/format_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/format/format_test.go rename to cli/vendor/github.com/onsi/gomega/format/format_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/buffer.go b/cli/vendor/github.com/onsi/gomega/gbytes/buffer.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/buffer.go rename to cli/vendor/github.com/onsi/gomega/gbytes/buffer.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/buffer_test.go b/cli/vendor/github.com/onsi/gomega/gbytes/buffer_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/buffer_test.go rename to cli/vendor/github.com/onsi/gomega/gbytes/buffer_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/gbuffer_suite_test.go b/cli/vendor/github.com/onsi/gomega/gbytes/gbuffer_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/gbuffer_suite_test.go rename to cli/vendor/github.com/onsi/gomega/gbytes/gbuffer_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/io_wrappers.go b/cli/vendor/github.com/onsi/gomega/gbytes/io_wrappers.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/io_wrappers.go rename to cli/vendor/github.com/onsi/gomega/gbytes/io_wrappers.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/io_wrappers_test.go b/cli/vendor/github.com/onsi/gomega/gbytes/io_wrappers_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/io_wrappers_test.go rename to cli/vendor/github.com/onsi/gomega/gbytes/io_wrappers_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/say_matcher.go b/cli/vendor/github.com/onsi/gomega/gbytes/say_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/say_matcher.go rename to cli/vendor/github.com/onsi/gomega/gbytes/say_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/gbytes/say_matcher_test.go b/cli/vendor/github.com/onsi/gomega/gbytes/say_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gbytes/say_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/gbytes/say_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/_fixture/firefly/main.go b/cli/vendor/github.com/onsi/gomega/gexec/_fixture/firefly/main.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/_fixture/firefly/main.go rename to cli/vendor/github.com/onsi/gomega/gexec/_fixture/firefly/main.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/build.go b/cli/vendor/github.com/onsi/gomega/gexec/build.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/build.go rename to cli/vendor/github.com/onsi/gomega/gexec/build.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/build_test.go b/cli/vendor/github.com/onsi/gomega/gexec/build_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/build_test.go rename to cli/vendor/github.com/onsi/gomega/gexec/build_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/exit_matcher.go b/cli/vendor/github.com/onsi/gomega/gexec/exit_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/exit_matcher.go rename to cli/vendor/github.com/onsi/gomega/gexec/exit_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/exit_matcher_test.go b/cli/vendor/github.com/onsi/gomega/gexec/exit_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/exit_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/gexec/exit_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/gexec_suite_test.go b/cli/vendor/github.com/onsi/gomega/gexec/gexec_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/gexec_suite_test.go rename to cli/vendor/github.com/onsi/gomega/gexec/gexec_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/prefixed_writer.go b/cli/vendor/github.com/onsi/gomega/gexec/prefixed_writer.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/prefixed_writer.go rename to cli/vendor/github.com/onsi/gomega/gexec/prefixed_writer.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/prefixed_writer_test.go b/cli/vendor/github.com/onsi/gomega/gexec/prefixed_writer_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/prefixed_writer_test.go rename to cli/vendor/github.com/onsi/gomega/gexec/prefixed_writer_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/session.go b/cli/vendor/github.com/onsi/gomega/gexec/session.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/session.go rename to cli/vendor/github.com/onsi/gomega/gexec/session.go diff --git a/fn/vendor/github.com/onsi/gomega/gexec/session_test.go b/cli/vendor/github.com/onsi/gomega/gexec/session_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gexec/session_test.go rename to cli/vendor/github.com/onsi/gomega/gexec/session_test.go diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/handlers.go b/cli/vendor/github.com/onsi/gomega/ghttp/handlers.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/handlers.go rename to cli/vendor/github.com/onsi/gomega/ghttp/handlers.go diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/protobuf/protobuf.go b/cli/vendor/github.com/onsi/gomega/ghttp/protobuf/protobuf.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/protobuf/protobuf.go rename to cli/vendor/github.com/onsi/gomega/ghttp/protobuf/protobuf.go diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.pb.go b/cli/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.pb.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.pb.go rename to cli/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.pb.go diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.proto b/cli/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.proto similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.proto rename to cli/vendor/github.com/onsi/gomega/ghttp/protobuf/simple_message.proto diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/test_server.go b/cli/vendor/github.com/onsi/gomega/ghttp/test_server.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/test_server.go rename to cli/vendor/github.com/onsi/gomega/ghttp/test_server.go diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/test_server_suite_test.go b/cli/vendor/github.com/onsi/gomega/ghttp/test_server_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/test_server_suite_test.go rename to cli/vendor/github.com/onsi/gomega/ghttp/test_server_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/ghttp/test_server_test.go b/cli/vendor/github.com/onsi/gomega/ghttp/test_server_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/ghttp/test_server_test.go rename to cli/vendor/github.com/onsi/gomega/ghttp/test_server_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gomega_dsl.go b/cli/vendor/github.com/onsi/gomega/gomega_dsl.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gomega_dsl.go rename to cli/vendor/github.com/onsi/gomega/gomega_dsl.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/elements.go b/cli/vendor/github.com/onsi/gomega/gstruct/elements.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/elements.go rename to cli/vendor/github.com/onsi/gomega/gstruct/elements.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/elements_test.go b/cli/vendor/github.com/onsi/gomega/gstruct/elements_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/elements_test.go rename to cli/vendor/github.com/onsi/gomega/gstruct/elements_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/errors/nested_types.go b/cli/vendor/github.com/onsi/gomega/gstruct/errors/nested_types.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/errors/nested_types.go rename to cli/vendor/github.com/onsi/gomega/gstruct/errors/nested_types.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/fields.go b/cli/vendor/github.com/onsi/gomega/gstruct/fields.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/fields.go rename to cli/vendor/github.com/onsi/gomega/gstruct/fields.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/fields_test.go b/cli/vendor/github.com/onsi/gomega/gstruct/fields_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/fields_test.go rename to cli/vendor/github.com/onsi/gomega/gstruct/fields_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/gstruct_tests_suite_test.go b/cli/vendor/github.com/onsi/gomega/gstruct/gstruct_tests_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/gstruct_tests_suite_test.go rename to cli/vendor/github.com/onsi/gomega/gstruct/gstruct_tests_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/ignore.go b/cli/vendor/github.com/onsi/gomega/gstruct/ignore.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/ignore.go rename to cli/vendor/github.com/onsi/gomega/gstruct/ignore.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/ignore_test.go b/cli/vendor/github.com/onsi/gomega/gstruct/ignore_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/ignore_test.go rename to cli/vendor/github.com/onsi/gomega/gstruct/ignore_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/pointer.go b/cli/vendor/github.com/onsi/gomega/gstruct/pointer.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/pointer.go rename to cli/vendor/github.com/onsi/gomega/gstruct/pointer.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/pointer_test.go b/cli/vendor/github.com/onsi/gomega/gstruct/pointer_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/pointer_test.go rename to cli/vendor/github.com/onsi/gomega/gstruct/pointer_test.go diff --git a/fn/vendor/github.com/onsi/gomega/gstruct/types.go b/cli/vendor/github.com/onsi/gomega/gstruct/types.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/gstruct/types.go rename to cli/vendor/github.com/onsi/gomega/gstruct/types.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/assertion/assertion.go b/cli/vendor/github.com/onsi/gomega/internal/assertion/assertion.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/assertion/assertion.go rename to cli/vendor/github.com/onsi/gomega/internal/assertion/assertion.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/assertion/assertion_suite_test.go b/cli/vendor/github.com/onsi/gomega/internal/assertion/assertion_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/assertion/assertion_suite_test.go rename to cli/vendor/github.com/onsi/gomega/internal/assertion/assertion_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/assertion/assertion_test.go b/cli/vendor/github.com/onsi/gomega/internal/assertion/assertion_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/assertion/assertion_test.go rename to cli/vendor/github.com/onsi/gomega/internal/assertion/assertion_test.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go b/cli/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go rename to cli/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_suite_test.go b/cli/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_suite_test.go rename to cli/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_test.go b/cli/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_test.go rename to cli/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion_test.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/fakematcher/fake_matcher.go b/cli/vendor/github.com/onsi/gomega/internal/fakematcher/fake_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/fakematcher/fake_matcher.go rename to cli/vendor/github.com/onsi/gomega/internal/fakematcher/fake_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/oraclematcher/oracle_matcher.go b/cli/vendor/github.com/onsi/gomega/internal/oraclematcher/oracle_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/oraclematcher/oracle_matcher.go rename to cli/vendor/github.com/onsi/gomega/internal/oraclematcher/oracle_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support.go b/cli/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support.go rename to cli/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support.go diff --git a/fn/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support_test.go b/cli/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support_test.go rename to cli/vendor/github.com/onsi/gomega/internal/testingtsupport/testing_t_support_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers.go b/cli/vendor/github.com/onsi/gomega/matchers.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers.go rename to cli/vendor/github.com/onsi/gomega/matchers.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/and.go b/cli/vendor/github.com/onsi/gomega/matchers/and.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/and.go rename to cli/vendor/github.com/onsi/gomega/matchers/and.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/and_test.go b/cli/vendor/github.com/onsi/gomega/matchers/and_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/and_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/and_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/assignable_to_type_of_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_a_directory.go b/cli/vendor/github.com/onsi/gomega/matchers/be_a_directory.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_a_directory.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_a_directory.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_a_directory_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_a_directory_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_a_directory_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_a_directory_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_a_regular_file.go b/cli/vendor/github.com/onsi/gomega/matchers/be_a_regular_file.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_a_regular_file.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_a_regular_file.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_a_regular_file_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_a_regular_file_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_a_regular_file_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_a_regular_file_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_an_existing_file.go b/cli/vendor/github.com/onsi/gomega/matchers/be_an_existing_file.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_an_existing_file.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_an_existing_file.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_an_existing_file_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_an_existing_file_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_an_existing_file_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_an_existing_file_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_closed_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_closed_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_closed_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_closed_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_closed_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_closed_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_closed_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_closed_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_empty_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_empty_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_empty_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_empty_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_empty_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_empty_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_empty_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_empty_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_equivalent_to_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_false_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_false_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_false_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_false_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_false_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_false_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_false_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_false_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_identical_to.go b/cli/vendor/github.com/onsi/gomega/matchers/be_identical_to.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_identical_to.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_identical_to.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_identical_to_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_identical_to_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_identical_to_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_identical_to_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_nil_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_nil_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_nil_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_nil_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_nil_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_numerically_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_sent_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_sent_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_sent_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_sent_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_sent_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_temporally_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_true_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_true_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_true_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_true_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_true_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_true_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_true_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_true_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_zero_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/be_zero_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/be_zero_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/be_zero_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/be_zero_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/consist_of.go b/cli/vendor/github.com/onsi/gomega/matchers/consist_of.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/consist_of.go rename to cli/vendor/github.com/onsi/gomega/matchers/consist_of.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/consist_of_test.go b/cli/vendor/github.com/onsi/gomega/matchers/consist_of_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/consist_of_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/consist_of_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/contain_element_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/contain_element_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/contain_element_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/contain_element_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/contain_element_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/contain_element_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/contain_element_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/contain_element_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/contain_substring_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/equal_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/equal_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/equal_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/equal_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/equal_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/equal_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/equal_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/equal_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_cap_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_cap_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_cap_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_cap_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_cap_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_cap_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_cap_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_cap_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_key_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_key_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_key_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_key_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_key_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_key_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_key_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_key_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_key_with_value_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_len_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_len_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_len_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_len_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_len_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_len_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_len_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_len_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_occurred_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_prefix_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/have_suffix_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_error_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/match_error_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_error_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_error_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_error_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/match_error_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_error_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_error_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_json_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/match_json_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_json_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_json_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_json_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/match_json_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_json_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_json_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_regexp_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_xml_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/match_xml_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_xml_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_xml_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_xml_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/match_xml_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_xml_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_xml_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/match_yaml_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/matcher_tests_suite_test.go b/cli/vendor/github.com/onsi/gomega/matchers/matcher_tests_suite_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/matcher_tests_suite_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/matcher_tests_suite_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/not.go b/cli/vendor/github.com/onsi/gomega/matchers/not.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/not.go rename to cli/vendor/github.com/onsi/gomega/matchers/not.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/not_test.go b/cli/vendor/github.com/onsi/gomega/matchers/not_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/not_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/not_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/or.go b/cli/vendor/github.com/onsi/gomega/matchers/or.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/or.go rename to cli/vendor/github.com/onsi/gomega/matchers/or.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/or_test.go b/cli/vendor/github.com/onsi/gomega/matchers/or_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/or_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/or_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/panic_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/panic_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/panic_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/panic_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/panic_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/panic_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/panic_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/panic_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/receive_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/receive_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/receive_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/receive_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/receive_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/receive_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/receive_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/receive_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/succeed_matcher.go b/cli/vendor/github.com/onsi/gomega/matchers/succeed_matcher.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/succeed_matcher.go rename to cli/vendor/github.com/onsi/gomega/matchers/succeed_matcher.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/succeed_matcher_test.go b/cli/vendor/github.com/onsi/gomega/matchers/succeed_matcher_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/succeed_matcher_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/succeed_matcher_test.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/support/goraph/MIT.LICENSE b/cli/vendor/github.com/onsi/gomega/matchers/support/goraph/MIT.LICENSE similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/support/goraph/MIT.LICENSE rename to cli/vendor/github.com/onsi/gomega/matchers/support/goraph/MIT.LICENSE diff --git a/fn/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraph.go b/cli/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraph.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraph.go rename to cli/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraph.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go b/cli/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go rename to cli/vendor/github.com/onsi/gomega/matchers/support/goraph/bipartitegraph/bipartitegraphmatching.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/support/goraph/edge/edge.go b/cli/vendor/github.com/onsi/gomega/matchers/support/goraph/edge/edge.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/support/goraph/edge/edge.go rename to cli/vendor/github.com/onsi/gomega/matchers/support/goraph/edge/edge.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go b/cli/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go rename to cli/vendor/github.com/onsi/gomega/matchers/support/goraph/node/node.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go b/cli/vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go rename to cli/vendor/github.com/onsi/gomega/matchers/support/goraph/util/util.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_01.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_01.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_01.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_01.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_02.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_02.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_02.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_02.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_03.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_03.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_03.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_03.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_04.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_04.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_04.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_04.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_05.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_05.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_05.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_05.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_06.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_06.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_06.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_06.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_07.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_07.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_07.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_07.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_08.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_08.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_08.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_08.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_09.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_09.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_09.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_09.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_10.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_10.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_10.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_10.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_11.xml b/cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_11.xml similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_11.xml rename to cli/vendor/github.com/onsi/gomega/matchers/test_data/xml/sample_11.xml diff --git a/fn/vendor/github.com/onsi/gomega/matchers/type_support.go b/cli/vendor/github.com/onsi/gomega/matchers/type_support.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/type_support.go rename to cli/vendor/github.com/onsi/gomega/matchers/type_support.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/with_transform.go b/cli/vendor/github.com/onsi/gomega/matchers/with_transform.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/with_transform.go rename to cli/vendor/github.com/onsi/gomega/matchers/with_transform.go diff --git a/fn/vendor/github.com/onsi/gomega/matchers/with_transform_test.go b/cli/vendor/github.com/onsi/gomega/matchers/with_transform_test.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/matchers/with_transform_test.go rename to cli/vendor/github.com/onsi/gomega/matchers/with_transform_test.go diff --git a/fn/vendor/github.com/onsi/gomega/types/types.go b/cli/vendor/github.com/onsi/gomega/types/types.go similarity index 100% rename from fn/vendor/github.com/onsi/gomega/types/types.go rename to cli/vendor/github.com/onsi/gomega/types/types.go diff --git a/fn/vendor/github.com/urfave/cli/.gitignore b/cli/vendor/github.com/urfave/cli/.gitignore similarity index 100% rename from fn/vendor/github.com/urfave/cli/.gitignore rename to cli/vendor/github.com/urfave/cli/.gitignore diff --git a/fn/vendor/github.com/urfave/cli/.travis.yml b/cli/vendor/github.com/urfave/cli/.travis.yml similarity index 100% rename from fn/vendor/github.com/urfave/cli/.travis.yml rename to cli/vendor/github.com/urfave/cli/.travis.yml diff --git a/fn/vendor/github.com/urfave/cli/CHANGELOG.md b/cli/vendor/github.com/urfave/cli/CHANGELOG.md similarity index 100% rename from fn/vendor/github.com/urfave/cli/CHANGELOG.md rename to cli/vendor/github.com/urfave/cli/CHANGELOG.md diff --git a/fn/vendor/github.com/urfave/cli/LICENSE b/cli/vendor/github.com/urfave/cli/LICENSE similarity index 100% rename from fn/vendor/github.com/urfave/cli/LICENSE rename to cli/vendor/github.com/urfave/cli/LICENSE diff --git a/fn/vendor/github.com/urfave/cli/README.md b/cli/vendor/github.com/urfave/cli/README.md similarity index 100% rename from fn/vendor/github.com/urfave/cli/README.md rename to cli/vendor/github.com/urfave/cli/README.md diff --git a/fn/vendor/github.com/urfave/cli/altsrc/altsrc.go b/cli/vendor/github.com/urfave/cli/altsrc/altsrc.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/altsrc.go rename to cli/vendor/github.com/urfave/cli/altsrc/altsrc.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/flag.go b/cli/vendor/github.com/urfave/cli/altsrc/flag.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/flag.go rename to cli/vendor/github.com/urfave/cli/altsrc/flag.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/flag_generated.go b/cli/vendor/github.com/urfave/cli/altsrc/flag_generated.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/flag_generated.go rename to cli/vendor/github.com/urfave/cli/altsrc/flag_generated.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/flag_test.go b/cli/vendor/github.com/urfave/cli/altsrc/flag_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/flag_test.go rename to cli/vendor/github.com/urfave/cli/altsrc/flag_test.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/helpers_test.go b/cli/vendor/github.com/urfave/cli/altsrc/helpers_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/helpers_test.go rename to cli/vendor/github.com/urfave/cli/altsrc/helpers_test.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/input_source_context.go b/cli/vendor/github.com/urfave/cli/altsrc/input_source_context.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/input_source_context.go rename to cli/vendor/github.com/urfave/cli/altsrc/input_source_context.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/map_input_source.go b/cli/vendor/github.com/urfave/cli/altsrc/map_input_source.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/map_input_source.go rename to cli/vendor/github.com/urfave/cli/altsrc/map_input_source.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/toml_command_test.go b/cli/vendor/github.com/urfave/cli/altsrc/toml_command_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/toml_command_test.go rename to cli/vendor/github.com/urfave/cli/altsrc/toml_command_test.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/toml_file_loader.go b/cli/vendor/github.com/urfave/cli/altsrc/toml_file_loader.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/toml_file_loader.go rename to cli/vendor/github.com/urfave/cli/altsrc/toml_file_loader.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/yaml_command_test.go b/cli/vendor/github.com/urfave/cli/altsrc/yaml_command_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/yaml_command_test.go rename to cli/vendor/github.com/urfave/cli/altsrc/yaml_command_test.go diff --git a/fn/vendor/github.com/urfave/cli/altsrc/yaml_file_loader.go b/cli/vendor/github.com/urfave/cli/altsrc/yaml_file_loader.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/altsrc/yaml_file_loader.go rename to cli/vendor/github.com/urfave/cli/altsrc/yaml_file_loader.go diff --git a/fn/vendor/github.com/urfave/cli/app.go b/cli/vendor/github.com/urfave/cli/app.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/app.go rename to cli/vendor/github.com/urfave/cli/app.go diff --git a/fn/vendor/github.com/urfave/cli/app_test.go b/cli/vendor/github.com/urfave/cli/app_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/app_test.go rename to cli/vendor/github.com/urfave/cli/app_test.go diff --git a/fn/vendor/github.com/urfave/cli/appveyor.yml b/cli/vendor/github.com/urfave/cli/appveyor.yml similarity index 100% rename from fn/vendor/github.com/urfave/cli/appveyor.yml rename to cli/vendor/github.com/urfave/cli/appveyor.yml diff --git a/fn/vendor/github.com/urfave/cli/autocomplete/bash_autocomplete b/cli/vendor/github.com/urfave/cli/autocomplete/bash_autocomplete similarity index 100% rename from fn/vendor/github.com/urfave/cli/autocomplete/bash_autocomplete rename to cli/vendor/github.com/urfave/cli/autocomplete/bash_autocomplete diff --git a/fn/vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete b/cli/vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete similarity index 100% rename from fn/vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete rename to cli/vendor/github.com/urfave/cli/autocomplete/zsh_autocomplete diff --git a/fn/vendor/github.com/urfave/cli/category.go b/cli/vendor/github.com/urfave/cli/category.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/category.go rename to cli/vendor/github.com/urfave/cli/category.go diff --git a/fn/vendor/github.com/urfave/cli/cli.go b/cli/vendor/github.com/urfave/cli/cli.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/cli.go rename to cli/vendor/github.com/urfave/cli/cli.go diff --git a/fn/vendor/github.com/urfave/cli/command.go b/cli/vendor/github.com/urfave/cli/command.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/command.go rename to cli/vendor/github.com/urfave/cli/command.go diff --git a/fn/vendor/github.com/urfave/cli/command_test.go b/cli/vendor/github.com/urfave/cli/command_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/command_test.go rename to cli/vendor/github.com/urfave/cli/command_test.go diff --git a/fn/vendor/github.com/urfave/cli/context.go b/cli/vendor/github.com/urfave/cli/context.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/context.go rename to cli/vendor/github.com/urfave/cli/context.go diff --git a/fn/vendor/github.com/urfave/cli/context_test.go b/cli/vendor/github.com/urfave/cli/context_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/context_test.go rename to cli/vendor/github.com/urfave/cli/context_test.go diff --git a/fn/vendor/github.com/urfave/cli/errors.go b/cli/vendor/github.com/urfave/cli/errors.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/errors.go rename to cli/vendor/github.com/urfave/cli/errors.go diff --git a/fn/vendor/github.com/urfave/cli/errors_test.go b/cli/vendor/github.com/urfave/cli/errors_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/errors_test.go rename to cli/vendor/github.com/urfave/cli/errors_test.go diff --git a/fn/vendor/github.com/urfave/cli/flag-types.json b/cli/vendor/github.com/urfave/cli/flag-types.json similarity index 100% rename from fn/vendor/github.com/urfave/cli/flag-types.json rename to cli/vendor/github.com/urfave/cli/flag-types.json diff --git a/fn/vendor/github.com/urfave/cli/flag.go b/cli/vendor/github.com/urfave/cli/flag.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/flag.go rename to cli/vendor/github.com/urfave/cli/flag.go diff --git a/fn/vendor/github.com/urfave/cli/flag_generated.go b/cli/vendor/github.com/urfave/cli/flag_generated.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/flag_generated.go rename to cli/vendor/github.com/urfave/cli/flag_generated.go diff --git a/fn/vendor/github.com/urfave/cli/flag_test.go b/cli/vendor/github.com/urfave/cli/flag_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/flag_test.go rename to cli/vendor/github.com/urfave/cli/flag_test.go diff --git a/fn/vendor/github.com/urfave/cli/funcs.go b/cli/vendor/github.com/urfave/cli/funcs.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/funcs.go rename to cli/vendor/github.com/urfave/cli/funcs.go diff --git a/fn/vendor/github.com/urfave/cli/generate-flag-types b/cli/vendor/github.com/urfave/cli/generate-flag-types similarity index 100% rename from fn/vendor/github.com/urfave/cli/generate-flag-types rename to cli/vendor/github.com/urfave/cli/generate-flag-types diff --git a/fn/vendor/github.com/urfave/cli/help.go b/cli/vendor/github.com/urfave/cli/help.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/help.go rename to cli/vendor/github.com/urfave/cli/help.go diff --git a/fn/vendor/github.com/urfave/cli/help_test.go b/cli/vendor/github.com/urfave/cli/help_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/help_test.go rename to cli/vendor/github.com/urfave/cli/help_test.go diff --git a/fn/vendor/github.com/urfave/cli/helpers_test.go b/cli/vendor/github.com/urfave/cli/helpers_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/helpers_test.go rename to cli/vendor/github.com/urfave/cli/helpers_test.go diff --git a/fn/vendor/github.com/urfave/cli/helpers_unix_test.go b/cli/vendor/github.com/urfave/cli/helpers_unix_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/helpers_unix_test.go rename to cli/vendor/github.com/urfave/cli/helpers_unix_test.go diff --git a/fn/vendor/github.com/urfave/cli/helpers_windows_test.go b/cli/vendor/github.com/urfave/cli/helpers_windows_test.go similarity index 100% rename from fn/vendor/github.com/urfave/cli/helpers_windows_test.go rename to cli/vendor/github.com/urfave/cli/helpers_windows_test.go diff --git a/fn/vendor/github.com/urfave/cli/runtests b/cli/vendor/github.com/urfave/cli/runtests similarity index 100% rename from fn/vendor/github.com/urfave/cli/runtests rename to cli/vendor/github.com/urfave/cli/runtests diff --git a/fn/vendor/golang.org/x/net/.gitattributes b/cli/vendor/golang.org/x/net/.gitattributes similarity index 100% rename from fn/vendor/golang.org/x/net/.gitattributes rename to cli/vendor/golang.org/x/net/.gitattributes diff --git a/fn/vendor/golang.org/x/net/.gitignore b/cli/vendor/golang.org/x/net/.gitignore similarity index 100% rename from fn/vendor/golang.org/x/net/.gitignore rename to cli/vendor/golang.org/x/net/.gitignore diff --git a/fn/vendor/golang.org/x/net/AUTHORS b/cli/vendor/golang.org/x/net/AUTHORS similarity index 100% rename from fn/vendor/golang.org/x/net/AUTHORS rename to cli/vendor/golang.org/x/net/AUTHORS diff --git a/fn/vendor/golang.org/x/net/CONTRIBUTING.md b/cli/vendor/golang.org/x/net/CONTRIBUTING.md similarity index 100% rename from fn/vendor/golang.org/x/net/CONTRIBUTING.md rename to cli/vendor/golang.org/x/net/CONTRIBUTING.md diff --git a/fn/vendor/golang.org/x/net/CONTRIBUTORS b/cli/vendor/golang.org/x/net/CONTRIBUTORS similarity index 100% rename from fn/vendor/golang.org/x/net/CONTRIBUTORS rename to cli/vendor/golang.org/x/net/CONTRIBUTORS diff --git a/fn/vendor/golang.org/x/net/LICENSE b/cli/vendor/golang.org/x/net/LICENSE similarity index 100% rename from fn/vendor/golang.org/x/net/LICENSE rename to cli/vendor/golang.org/x/net/LICENSE diff --git a/fn/vendor/golang.org/x/net/PATENTS b/cli/vendor/golang.org/x/net/PATENTS similarity index 100% rename from fn/vendor/golang.org/x/net/PATENTS rename to cli/vendor/golang.org/x/net/PATENTS diff --git a/fn/vendor/golang.org/x/net/README b/cli/vendor/golang.org/x/net/README similarity index 100% rename from fn/vendor/golang.org/x/net/README rename to cli/vendor/golang.org/x/net/README diff --git a/fn/vendor/golang.org/x/net/codereview.cfg b/cli/vendor/golang.org/x/net/codereview.cfg similarity index 100% rename from fn/vendor/golang.org/x/net/codereview.cfg rename to cli/vendor/golang.org/x/net/codereview.cfg diff --git a/fn/vendor/golang.org/x/net/context/context.go b/cli/vendor/golang.org/x/net/context/context.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/context.go rename to cli/vendor/golang.org/x/net/context/context.go diff --git a/fn/vendor/golang.org/x/net/context/context_test.go b/cli/vendor/golang.org/x/net/context/context_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/context_test.go rename to cli/vendor/golang.org/x/net/context/context_test.go diff --git a/fn/vendor/golang.org/x/net/context/ctxhttp/cancelreq.go b/cli/vendor/golang.org/x/net/context/ctxhttp/cancelreq.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/ctxhttp/cancelreq.go rename to cli/vendor/golang.org/x/net/context/ctxhttp/cancelreq.go diff --git a/fn/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go b/cli/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go rename to cli/vendor/golang.org/x/net/context/ctxhttp/cancelreq_go14.go diff --git a/fn/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go b/cli/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go rename to cli/vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go diff --git a/fn/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go b/cli/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go rename to cli/vendor/golang.org/x/net/context/ctxhttp/ctxhttp_test.go diff --git a/fn/vendor/golang.org/x/net/context/withtimeout_test.go b/cli/vendor/golang.org/x/net/context/withtimeout_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/context/withtimeout_test.go rename to cli/vendor/golang.org/x/net/context/withtimeout_test.go diff --git a/fn/vendor/golang.org/x/net/dict/dict.go b/cli/vendor/golang.org/x/net/dict/dict.go similarity index 100% rename from fn/vendor/golang.org/x/net/dict/dict.go rename to cli/vendor/golang.org/x/net/dict/dict.go diff --git a/fn/vendor/golang.org/x/net/html/atom/atom.go b/cli/vendor/golang.org/x/net/html/atom/atom.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/atom/atom.go rename to cli/vendor/golang.org/x/net/html/atom/atom.go diff --git a/fn/vendor/golang.org/x/net/html/atom/atom_test.go b/cli/vendor/golang.org/x/net/html/atom/atom_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/atom/atom_test.go rename to cli/vendor/golang.org/x/net/html/atom/atom_test.go diff --git a/fn/vendor/golang.org/x/net/html/atom/gen.go b/cli/vendor/golang.org/x/net/html/atom/gen.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/atom/gen.go rename to cli/vendor/golang.org/x/net/html/atom/gen.go diff --git a/fn/vendor/golang.org/x/net/html/atom/table.go b/cli/vendor/golang.org/x/net/html/atom/table.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/atom/table.go rename to cli/vendor/golang.org/x/net/html/atom/table.go diff --git a/fn/vendor/golang.org/x/net/html/atom/table_test.go b/cli/vendor/golang.org/x/net/html/atom/table_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/atom/table_test.go rename to cli/vendor/golang.org/x/net/html/atom/table_test.go diff --git a/fn/vendor/golang.org/x/net/html/charset/charset.go b/cli/vendor/golang.org/x/net/html/charset/charset.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/charset.go rename to cli/vendor/golang.org/x/net/html/charset/charset.go diff --git a/fn/vendor/golang.org/x/net/html/charset/charset_test.go b/cli/vendor/golang.org/x/net/html/charset/charset_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/charset_test.go rename to cli/vendor/golang.org/x/net/html/charset/charset_test.go diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-charset.html b/cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-charset.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-charset.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-charset.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-UTF-8-BOM.html b/cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-UTF-8-BOM.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-UTF-8-BOM.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-UTF-8-BOM.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-charset.html b/cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-charset.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-charset.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-charset.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-content.html b/cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-content.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-content.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/HTTP-vs-meta-content.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/No-encoding-declaration.html b/cli/vendor/golang.org/x/net/html/charset/testdata/No-encoding-declaration.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/No-encoding-declaration.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/No-encoding-declaration.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/README b/cli/vendor/golang.org/x/net/html/charset/testdata/README similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/README rename to cli/vendor/golang.org/x/net/html/charset/testdata/README diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html b/cli/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html b/cli/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-charset.html b/cli/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-charset.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-charset.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-charset.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-content.html b/cli/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-content.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-content.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/UTF-8-BOM-vs-meta-content.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/meta-charset-attribute.html b/cli/vendor/golang.org/x/net/html/charset/testdata/meta-charset-attribute.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/meta-charset-attribute.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/meta-charset-attribute.html diff --git a/fn/vendor/golang.org/x/net/html/charset/testdata/meta-content-attribute.html b/cli/vendor/golang.org/x/net/html/charset/testdata/meta-content-attribute.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/charset/testdata/meta-content-attribute.html rename to cli/vendor/golang.org/x/net/html/charset/testdata/meta-content-attribute.html diff --git a/fn/vendor/golang.org/x/net/html/const.go b/cli/vendor/golang.org/x/net/html/const.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/const.go rename to cli/vendor/golang.org/x/net/html/const.go diff --git a/fn/vendor/golang.org/x/net/html/doc.go b/cli/vendor/golang.org/x/net/html/doc.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/doc.go rename to cli/vendor/golang.org/x/net/html/doc.go diff --git a/fn/vendor/golang.org/x/net/html/doctype.go b/cli/vendor/golang.org/x/net/html/doctype.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/doctype.go rename to cli/vendor/golang.org/x/net/html/doctype.go diff --git a/fn/vendor/golang.org/x/net/html/entity.go b/cli/vendor/golang.org/x/net/html/entity.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/entity.go rename to cli/vendor/golang.org/x/net/html/entity.go diff --git a/fn/vendor/golang.org/x/net/html/entity_test.go b/cli/vendor/golang.org/x/net/html/entity_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/entity_test.go rename to cli/vendor/golang.org/x/net/html/entity_test.go diff --git a/fn/vendor/golang.org/x/net/html/escape.go b/cli/vendor/golang.org/x/net/html/escape.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/escape.go rename to cli/vendor/golang.org/x/net/html/escape.go diff --git a/fn/vendor/golang.org/x/net/html/escape_test.go b/cli/vendor/golang.org/x/net/html/escape_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/escape_test.go rename to cli/vendor/golang.org/x/net/html/escape_test.go diff --git a/fn/vendor/golang.org/x/net/html/example_test.go b/cli/vendor/golang.org/x/net/html/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/example_test.go rename to cli/vendor/golang.org/x/net/html/example_test.go diff --git a/fn/vendor/golang.org/x/net/html/foreign.go b/cli/vendor/golang.org/x/net/html/foreign.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/foreign.go rename to cli/vendor/golang.org/x/net/html/foreign.go diff --git a/fn/vendor/golang.org/x/net/html/node.go b/cli/vendor/golang.org/x/net/html/node.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/node.go rename to cli/vendor/golang.org/x/net/html/node.go diff --git a/fn/vendor/golang.org/x/net/html/node_test.go b/cli/vendor/golang.org/x/net/html/node_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/node_test.go rename to cli/vendor/golang.org/x/net/html/node_test.go diff --git a/fn/vendor/golang.org/x/net/html/parse.go b/cli/vendor/golang.org/x/net/html/parse.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/parse.go rename to cli/vendor/golang.org/x/net/html/parse.go diff --git a/fn/vendor/golang.org/x/net/html/parse_test.go b/cli/vendor/golang.org/x/net/html/parse_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/parse_test.go rename to cli/vendor/golang.org/x/net/html/parse_test.go diff --git a/fn/vendor/golang.org/x/net/html/render.go b/cli/vendor/golang.org/x/net/html/render.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/render.go rename to cli/vendor/golang.org/x/net/html/render.go diff --git a/fn/vendor/golang.org/x/net/html/render_test.go b/cli/vendor/golang.org/x/net/html/render_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/render_test.go rename to cli/vendor/golang.org/x/net/html/render_test.go diff --git a/fn/vendor/golang.org/x/net/html/testdata/go1.html b/cli/vendor/golang.org/x/net/html/testdata/go1.html similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/go1.html rename to cli/vendor/golang.org/x/net/html/testdata/go1.html diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/README b/cli/vendor/golang.org/x/net/html/testdata/webkit/README similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/README rename to cli/vendor/golang.org/x/net/html/testdata/webkit/README diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/adoption01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/adoption01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/adoption01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/adoption01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/adoption02.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/comments01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/comments01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/comments01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/comments01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/doctype01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/doctype01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/doctype01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/doctype01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/entities01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/entities01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/entities01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/entities01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/entities02.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/entities02.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/entities02.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/entities02.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/html5test-com.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/html5test-com.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/html5test-com.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/html5test-com.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/inbody01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/inbody01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/inbody01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/inbody01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/isindex.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/isindex.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/isindex.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/isindex.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/plain-text-unsafe.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/plain-text-unsafe.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/plain-text-unsafe.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/plain-text-unsafe.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/scriptdata01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/scriptdata01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/scriptdata01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/scriptdata01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/scripted/webkit01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/scripted/webkit01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/scripted/webkit01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/scripted/webkit01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tables01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tables01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tables01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tables01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests1.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests1.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests1.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests1.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests10.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests10.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests10.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests10.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests11.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests11.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests11.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests11.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests12.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests12.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests12.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests12.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests14.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests14.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests14.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests14.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests15.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests15.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests15.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests15.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests16.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests16.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests16.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests16.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests17.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests17.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests17.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests17.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests18.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests18.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests18.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests18.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests19.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests19.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests19.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests19.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests2.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests2.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests2.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests2.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests20.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests20.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests20.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests20.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests21.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests21.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests21.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests21.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests22.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests22.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests22.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests22.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests23.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests23.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests23.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests23.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests24.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests24.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests24.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests24.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests25.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests25.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests25.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests25.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests26.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests26.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests26.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests26.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests3.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests3.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests3.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests3.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests4.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests4.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests4.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests4.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests5.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests5.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests5.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests5.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests6.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests6.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests6.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests6.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests7.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests7.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests7.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests7.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests8.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests8.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests8.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests8.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests9.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests9.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests9.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests9.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tests_innerHTML_1.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tests_innerHTML_1.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tests_innerHTML_1.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tests_innerHTML_1.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/tricky01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/tricky01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/tricky01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/tricky01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/webkit01.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/webkit01.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/webkit01.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/webkit01.dat diff --git a/fn/vendor/golang.org/x/net/html/testdata/webkit/webkit02.dat b/cli/vendor/golang.org/x/net/html/testdata/webkit/webkit02.dat similarity index 100% rename from fn/vendor/golang.org/x/net/html/testdata/webkit/webkit02.dat rename to cli/vendor/golang.org/x/net/html/testdata/webkit/webkit02.dat diff --git a/fn/vendor/golang.org/x/net/html/token.go b/cli/vendor/golang.org/x/net/html/token.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/token.go rename to cli/vendor/golang.org/x/net/html/token.go diff --git a/fn/vendor/golang.org/x/net/html/token_test.go b/cli/vendor/golang.org/x/net/html/token_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/html/token_test.go rename to cli/vendor/golang.org/x/net/html/token_test.go diff --git a/fn/vendor/golang.org/x/net/http2/.gitignore b/cli/vendor/golang.org/x/net/http2/.gitignore similarity index 100% rename from fn/vendor/golang.org/x/net/http2/.gitignore rename to cli/vendor/golang.org/x/net/http2/.gitignore diff --git a/fn/vendor/golang.org/x/net/http2/Dockerfile b/cli/vendor/golang.org/x/net/http2/Dockerfile similarity index 100% rename from fn/vendor/golang.org/x/net/http2/Dockerfile rename to cli/vendor/golang.org/x/net/http2/Dockerfile diff --git a/fn/vendor/golang.org/x/net/http2/Makefile b/cli/vendor/golang.org/x/net/http2/Makefile similarity index 100% rename from fn/vendor/golang.org/x/net/http2/Makefile rename to cli/vendor/golang.org/x/net/http2/Makefile diff --git a/fn/vendor/golang.org/x/net/http2/README b/cli/vendor/golang.org/x/net/http2/README similarity index 100% rename from fn/vendor/golang.org/x/net/http2/README rename to cli/vendor/golang.org/x/net/http2/README diff --git a/fn/vendor/golang.org/x/net/http2/client_conn_pool.go b/cli/vendor/golang.org/x/net/http2/client_conn_pool.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/client_conn_pool.go rename to cli/vendor/golang.org/x/net/http2/client_conn_pool.go diff --git a/fn/vendor/golang.org/x/net/http2/configure_transport.go b/cli/vendor/golang.org/x/net/http2/configure_transport.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/configure_transport.go rename to cli/vendor/golang.org/x/net/http2/configure_transport.go diff --git a/fn/vendor/golang.org/x/net/http2/errors.go b/cli/vendor/golang.org/x/net/http2/errors.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/errors.go rename to cli/vendor/golang.org/x/net/http2/errors.go diff --git a/fn/vendor/golang.org/x/net/http2/errors_test.go b/cli/vendor/golang.org/x/net/http2/errors_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/errors_test.go rename to cli/vendor/golang.org/x/net/http2/errors_test.go diff --git a/fn/vendor/golang.org/x/net/http2/fixed_buffer.go b/cli/vendor/golang.org/x/net/http2/fixed_buffer.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/fixed_buffer.go rename to cli/vendor/golang.org/x/net/http2/fixed_buffer.go diff --git a/fn/vendor/golang.org/x/net/http2/fixed_buffer_test.go b/cli/vendor/golang.org/x/net/http2/fixed_buffer_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/fixed_buffer_test.go rename to cli/vendor/golang.org/x/net/http2/fixed_buffer_test.go diff --git a/fn/vendor/golang.org/x/net/http2/flow.go b/cli/vendor/golang.org/x/net/http2/flow.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/flow.go rename to cli/vendor/golang.org/x/net/http2/flow.go diff --git a/fn/vendor/golang.org/x/net/http2/flow_test.go b/cli/vendor/golang.org/x/net/http2/flow_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/flow_test.go rename to cli/vendor/golang.org/x/net/http2/flow_test.go diff --git a/fn/vendor/golang.org/x/net/http2/frame.go b/cli/vendor/golang.org/x/net/http2/frame.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/frame.go rename to cli/vendor/golang.org/x/net/http2/frame.go diff --git a/fn/vendor/golang.org/x/net/http2/frame_test.go b/cli/vendor/golang.org/x/net/http2/frame_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/frame_test.go rename to cli/vendor/golang.org/x/net/http2/frame_test.go diff --git a/fn/vendor/golang.org/x/net/http2/go15.go b/cli/vendor/golang.org/x/net/http2/go15.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/go15.go rename to cli/vendor/golang.org/x/net/http2/go15.go diff --git a/fn/vendor/golang.org/x/net/http2/gotrack.go b/cli/vendor/golang.org/x/net/http2/gotrack.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/gotrack.go rename to cli/vendor/golang.org/x/net/http2/gotrack.go diff --git a/fn/vendor/golang.org/x/net/http2/gotrack_test.go b/cli/vendor/golang.org/x/net/http2/gotrack_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/gotrack_test.go rename to cli/vendor/golang.org/x/net/http2/gotrack_test.go diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/.gitignore b/cli/vendor/golang.org/x/net/http2/h2demo/.gitignore similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/.gitignore rename to cli/vendor/golang.org/x/net/http2/h2demo/.gitignore diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/Makefile b/cli/vendor/golang.org/x/net/http2/h2demo/Makefile similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/Makefile rename to cli/vendor/golang.org/x/net/http2/h2demo/Makefile diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/README b/cli/vendor/golang.org/x/net/http2/h2demo/README similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/README rename to cli/vendor/golang.org/x/net/http2/h2demo/README diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/h2demo.go b/cli/vendor/golang.org/x/net/http2/h2demo/h2demo.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/h2demo.go rename to cli/vendor/golang.org/x/net/http2/h2demo/h2demo.go diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/launch.go b/cli/vendor/golang.org/x/net/http2/h2demo/launch.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/launch.go rename to cli/vendor/golang.org/x/net/http2/h2demo/launch.go diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/rootCA.key b/cli/vendor/golang.org/x/net/http2/h2demo/rootCA.key similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/rootCA.key rename to cli/vendor/golang.org/x/net/http2/h2demo/rootCA.key diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/rootCA.srl b/cli/vendor/golang.org/x/net/http2/h2demo/rootCA.srl similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/rootCA.srl rename to cli/vendor/golang.org/x/net/http2/h2demo/rootCA.srl diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/server.crt b/cli/vendor/golang.org/x/net/http2/h2demo/server.crt similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/server.crt rename to cli/vendor/golang.org/x/net/http2/h2demo/server.crt diff --git a/fn/vendor/golang.org/x/net/http2/h2demo/server.key b/cli/vendor/golang.org/x/net/http2/h2demo/server.key similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2demo/server.key rename to cli/vendor/golang.org/x/net/http2/h2demo/server.key diff --git a/fn/vendor/golang.org/x/net/http2/h2i/README.md b/cli/vendor/golang.org/x/net/http2/h2i/README.md similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2i/README.md rename to cli/vendor/golang.org/x/net/http2/h2i/README.md diff --git a/fn/vendor/golang.org/x/net/http2/h2i/h2i.go b/cli/vendor/golang.org/x/net/http2/h2i/h2i.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/h2i/h2i.go rename to cli/vendor/golang.org/x/net/http2/h2i/h2i.go diff --git a/fn/vendor/golang.org/x/net/http2/headermap.go b/cli/vendor/golang.org/x/net/http2/headermap.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/headermap.go rename to cli/vendor/golang.org/x/net/http2/headermap.go diff --git a/fn/vendor/golang.org/x/net/http2/hpack/encode.go b/cli/vendor/golang.org/x/net/http2/hpack/encode.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/hpack/encode.go rename to cli/vendor/golang.org/x/net/http2/hpack/encode.go diff --git a/fn/vendor/golang.org/x/net/http2/hpack/encode_test.go b/cli/vendor/golang.org/x/net/http2/hpack/encode_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/hpack/encode_test.go rename to cli/vendor/golang.org/x/net/http2/hpack/encode_test.go diff --git a/fn/vendor/golang.org/x/net/http2/hpack/hpack.go b/cli/vendor/golang.org/x/net/http2/hpack/hpack.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/hpack/hpack.go rename to cli/vendor/golang.org/x/net/http2/hpack/hpack.go diff --git a/fn/vendor/golang.org/x/net/http2/hpack/hpack_test.go b/cli/vendor/golang.org/x/net/http2/hpack/hpack_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/hpack/hpack_test.go rename to cli/vendor/golang.org/x/net/http2/hpack/hpack_test.go diff --git a/fn/vendor/golang.org/x/net/http2/hpack/huffman.go b/cli/vendor/golang.org/x/net/http2/hpack/huffman.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/hpack/huffman.go rename to cli/vendor/golang.org/x/net/http2/hpack/huffman.go diff --git a/fn/vendor/golang.org/x/net/http2/hpack/tables.go b/cli/vendor/golang.org/x/net/http2/hpack/tables.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/hpack/tables.go rename to cli/vendor/golang.org/x/net/http2/hpack/tables.go diff --git a/fn/vendor/golang.org/x/net/http2/http2.go b/cli/vendor/golang.org/x/net/http2/http2.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/http2.go rename to cli/vendor/golang.org/x/net/http2/http2.go diff --git a/fn/vendor/golang.org/x/net/http2/http2_test.go b/cli/vendor/golang.org/x/net/http2/http2_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/http2_test.go rename to cli/vendor/golang.org/x/net/http2/http2_test.go diff --git a/fn/vendor/golang.org/x/net/http2/not_go15.go b/cli/vendor/golang.org/x/net/http2/not_go15.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/not_go15.go rename to cli/vendor/golang.org/x/net/http2/not_go15.go diff --git a/fn/vendor/golang.org/x/net/http2/not_go16.go b/cli/vendor/golang.org/x/net/http2/not_go16.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/not_go16.go rename to cli/vendor/golang.org/x/net/http2/not_go16.go diff --git a/fn/vendor/golang.org/x/net/http2/pipe.go b/cli/vendor/golang.org/x/net/http2/pipe.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/pipe.go rename to cli/vendor/golang.org/x/net/http2/pipe.go diff --git a/fn/vendor/golang.org/x/net/http2/pipe_test.go b/cli/vendor/golang.org/x/net/http2/pipe_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/pipe_test.go rename to cli/vendor/golang.org/x/net/http2/pipe_test.go diff --git a/fn/vendor/golang.org/x/net/http2/priority_test.go b/cli/vendor/golang.org/x/net/http2/priority_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/priority_test.go rename to cli/vendor/golang.org/x/net/http2/priority_test.go diff --git a/fn/vendor/golang.org/x/net/http2/server.go b/cli/vendor/golang.org/x/net/http2/server.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/server.go rename to cli/vendor/golang.org/x/net/http2/server.go diff --git a/fn/vendor/golang.org/x/net/http2/server_test.go b/cli/vendor/golang.org/x/net/http2/server_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/server_test.go rename to cli/vendor/golang.org/x/net/http2/server_test.go diff --git a/fn/vendor/golang.org/x/net/http2/testdata/draft-ietf-httpbis-http2.xml b/cli/vendor/golang.org/x/net/http2/testdata/draft-ietf-httpbis-http2.xml similarity index 100% rename from fn/vendor/golang.org/x/net/http2/testdata/draft-ietf-httpbis-http2.xml rename to cli/vendor/golang.org/x/net/http2/testdata/draft-ietf-httpbis-http2.xml diff --git a/fn/vendor/golang.org/x/net/http2/transport.go b/cli/vendor/golang.org/x/net/http2/transport.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/transport.go rename to cli/vendor/golang.org/x/net/http2/transport.go diff --git a/fn/vendor/golang.org/x/net/http2/transport_test.go b/cli/vendor/golang.org/x/net/http2/transport_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/transport_test.go rename to cli/vendor/golang.org/x/net/http2/transport_test.go diff --git a/fn/vendor/golang.org/x/net/http2/write.go b/cli/vendor/golang.org/x/net/http2/write.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/write.go rename to cli/vendor/golang.org/x/net/http2/write.go diff --git a/fn/vendor/golang.org/x/net/http2/writesched.go b/cli/vendor/golang.org/x/net/http2/writesched.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/writesched.go rename to cli/vendor/golang.org/x/net/http2/writesched.go diff --git a/fn/vendor/golang.org/x/net/http2/z_spec_test.go b/cli/vendor/golang.org/x/net/http2/z_spec_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/http2/z_spec_test.go rename to cli/vendor/golang.org/x/net/http2/z_spec_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/dstunreach.go b/cli/vendor/golang.org/x/net/icmp/dstunreach.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/dstunreach.go rename to cli/vendor/golang.org/x/net/icmp/dstunreach.go diff --git a/fn/vendor/golang.org/x/net/icmp/echo.go b/cli/vendor/golang.org/x/net/icmp/echo.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/echo.go rename to cli/vendor/golang.org/x/net/icmp/echo.go diff --git a/fn/vendor/golang.org/x/net/icmp/endpoint.go b/cli/vendor/golang.org/x/net/icmp/endpoint.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/endpoint.go rename to cli/vendor/golang.org/x/net/icmp/endpoint.go diff --git a/fn/vendor/golang.org/x/net/icmp/example_test.go b/cli/vendor/golang.org/x/net/icmp/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/example_test.go rename to cli/vendor/golang.org/x/net/icmp/example_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/extension.go b/cli/vendor/golang.org/x/net/icmp/extension.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/extension.go rename to cli/vendor/golang.org/x/net/icmp/extension.go diff --git a/fn/vendor/golang.org/x/net/icmp/extension_test.go b/cli/vendor/golang.org/x/net/icmp/extension_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/extension_test.go rename to cli/vendor/golang.org/x/net/icmp/extension_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/helper_posix.go b/cli/vendor/golang.org/x/net/icmp/helper_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/helper_posix.go rename to cli/vendor/golang.org/x/net/icmp/helper_posix.go diff --git a/fn/vendor/golang.org/x/net/icmp/interface.go b/cli/vendor/golang.org/x/net/icmp/interface.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/interface.go rename to cli/vendor/golang.org/x/net/icmp/interface.go diff --git a/fn/vendor/golang.org/x/net/icmp/ipv4.go b/cli/vendor/golang.org/x/net/icmp/ipv4.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/ipv4.go rename to cli/vendor/golang.org/x/net/icmp/ipv4.go diff --git a/fn/vendor/golang.org/x/net/icmp/ipv4_test.go b/cli/vendor/golang.org/x/net/icmp/ipv4_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/ipv4_test.go rename to cli/vendor/golang.org/x/net/icmp/ipv4_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/ipv6.go b/cli/vendor/golang.org/x/net/icmp/ipv6.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/ipv6.go rename to cli/vendor/golang.org/x/net/icmp/ipv6.go diff --git a/fn/vendor/golang.org/x/net/icmp/listen_posix.go b/cli/vendor/golang.org/x/net/icmp/listen_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/listen_posix.go rename to cli/vendor/golang.org/x/net/icmp/listen_posix.go diff --git a/fn/vendor/golang.org/x/net/icmp/listen_stub.go b/cli/vendor/golang.org/x/net/icmp/listen_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/listen_stub.go rename to cli/vendor/golang.org/x/net/icmp/listen_stub.go diff --git a/fn/vendor/golang.org/x/net/icmp/message.go b/cli/vendor/golang.org/x/net/icmp/message.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/message.go rename to cli/vendor/golang.org/x/net/icmp/message.go diff --git a/fn/vendor/golang.org/x/net/icmp/message_test.go b/cli/vendor/golang.org/x/net/icmp/message_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/message_test.go rename to cli/vendor/golang.org/x/net/icmp/message_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/messagebody.go b/cli/vendor/golang.org/x/net/icmp/messagebody.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/messagebody.go rename to cli/vendor/golang.org/x/net/icmp/messagebody.go diff --git a/fn/vendor/golang.org/x/net/icmp/mpls.go b/cli/vendor/golang.org/x/net/icmp/mpls.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/mpls.go rename to cli/vendor/golang.org/x/net/icmp/mpls.go diff --git a/fn/vendor/golang.org/x/net/icmp/multipart.go b/cli/vendor/golang.org/x/net/icmp/multipart.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/multipart.go rename to cli/vendor/golang.org/x/net/icmp/multipart.go diff --git a/fn/vendor/golang.org/x/net/icmp/multipart_test.go b/cli/vendor/golang.org/x/net/icmp/multipart_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/multipart_test.go rename to cli/vendor/golang.org/x/net/icmp/multipart_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/packettoobig.go b/cli/vendor/golang.org/x/net/icmp/packettoobig.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/packettoobig.go rename to cli/vendor/golang.org/x/net/icmp/packettoobig.go diff --git a/fn/vendor/golang.org/x/net/icmp/paramprob.go b/cli/vendor/golang.org/x/net/icmp/paramprob.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/paramprob.go rename to cli/vendor/golang.org/x/net/icmp/paramprob.go diff --git a/fn/vendor/golang.org/x/net/icmp/ping_test.go b/cli/vendor/golang.org/x/net/icmp/ping_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/ping_test.go rename to cli/vendor/golang.org/x/net/icmp/ping_test.go diff --git a/fn/vendor/golang.org/x/net/icmp/sys_freebsd.go b/cli/vendor/golang.org/x/net/icmp/sys_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/sys_freebsd.go rename to cli/vendor/golang.org/x/net/icmp/sys_freebsd.go diff --git a/fn/vendor/golang.org/x/net/icmp/timeexceeded.go b/cli/vendor/golang.org/x/net/icmp/timeexceeded.go similarity index 100% rename from fn/vendor/golang.org/x/net/icmp/timeexceeded.go rename to cli/vendor/golang.org/x/net/icmp/timeexceeded.go diff --git a/fn/vendor/golang.org/x/net/idna/idna.go b/cli/vendor/golang.org/x/net/idna/idna.go similarity index 100% rename from fn/vendor/golang.org/x/net/idna/idna.go rename to cli/vendor/golang.org/x/net/idna/idna.go diff --git a/fn/vendor/golang.org/x/net/idna/idna_test.go b/cli/vendor/golang.org/x/net/idna/idna_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/idna/idna_test.go rename to cli/vendor/golang.org/x/net/idna/idna_test.go diff --git a/fn/vendor/golang.org/x/net/idna/punycode.go b/cli/vendor/golang.org/x/net/idna/punycode.go similarity index 100% rename from fn/vendor/golang.org/x/net/idna/punycode.go rename to cli/vendor/golang.org/x/net/idna/punycode.go diff --git a/fn/vendor/golang.org/x/net/idna/punycode_test.go b/cli/vendor/golang.org/x/net/idna/punycode_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/idna/punycode_test.go rename to cli/vendor/golang.org/x/net/idna/punycode_test.go diff --git a/fn/vendor/golang.org/x/net/internal/iana/const.go b/cli/vendor/golang.org/x/net/internal/iana/const.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/iana/const.go rename to cli/vendor/golang.org/x/net/internal/iana/const.go diff --git a/fn/vendor/golang.org/x/net/internal/iana/gen.go b/cli/vendor/golang.org/x/net/internal/iana/gen.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/iana/gen.go rename to cli/vendor/golang.org/x/net/internal/iana/gen.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/error_posix.go b/cli/vendor/golang.org/x/net/internal/nettest/error_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/error_posix.go rename to cli/vendor/golang.org/x/net/internal/nettest/error_posix.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/error_stub.go b/cli/vendor/golang.org/x/net/internal/nettest/error_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/error_stub.go rename to cli/vendor/golang.org/x/net/internal/nettest/error_stub.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/interface.go b/cli/vendor/golang.org/x/net/internal/nettest/interface.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/interface.go rename to cli/vendor/golang.org/x/net/internal/nettest/interface.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/rlimit.go b/cli/vendor/golang.org/x/net/internal/nettest/rlimit.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/rlimit.go rename to cli/vendor/golang.org/x/net/internal/nettest/rlimit.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/rlimit_stub.go b/cli/vendor/golang.org/x/net/internal/nettest/rlimit_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/rlimit_stub.go rename to cli/vendor/golang.org/x/net/internal/nettest/rlimit_stub.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/rlimit_unix.go b/cli/vendor/golang.org/x/net/internal/nettest/rlimit_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/rlimit_unix.go rename to cli/vendor/golang.org/x/net/internal/nettest/rlimit_unix.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/rlimit_windows.go b/cli/vendor/golang.org/x/net/internal/nettest/rlimit_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/rlimit_windows.go rename to cli/vendor/golang.org/x/net/internal/nettest/rlimit_windows.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/stack.go b/cli/vendor/golang.org/x/net/internal/nettest/stack.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/stack.go rename to cli/vendor/golang.org/x/net/internal/nettest/stack.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/stack_stub.go b/cli/vendor/golang.org/x/net/internal/nettest/stack_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/stack_stub.go rename to cli/vendor/golang.org/x/net/internal/nettest/stack_stub.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/stack_unix.go b/cli/vendor/golang.org/x/net/internal/nettest/stack_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/stack_unix.go rename to cli/vendor/golang.org/x/net/internal/nettest/stack_unix.go diff --git a/fn/vendor/golang.org/x/net/internal/nettest/stack_windows.go b/cli/vendor/golang.org/x/net/internal/nettest/stack_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/nettest/stack_windows.go rename to cli/vendor/golang.org/x/net/internal/nettest/stack_windows.go diff --git a/fn/vendor/golang.org/x/net/internal/timeseries/timeseries.go b/cli/vendor/golang.org/x/net/internal/timeseries/timeseries.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/timeseries/timeseries.go rename to cli/vendor/golang.org/x/net/internal/timeseries/timeseries.go diff --git a/fn/vendor/golang.org/x/net/internal/timeseries/timeseries_test.go b/cli/vendor/golang.org/x/net/internal/timeseries/timeseries_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/internal/timeseries/timeseries_test.go rename to cli/vendor/golang.org/x/net/internal/timeseries/timeseries_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/control.go b/cli/vendor/golang.org/x/net/ipv4/control.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/control.go rename to cli/vendor/golang.org/x/net/ipv4/control.go diff --git a/fn/vendor/golang.org/x/net/ipv4/control_bsd.go b/cli/vendor/golang.org/x/net/ipv4/control_bsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/control_bsd.go rename to cli/vendor/golang.org/x/net/ipv4/control_bsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/control_pktinfo.go b/cli/vendor/golang.org/x/net/ipv4/control_pktinfo.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/control_pktinfo.go rename to cli/vendor/golang.org/x/net/ipv4/control_pktinfo.go diff --git a/fn/vendor/golang.org/x/net/ipv4/control_stub.go b/cli/vendor/golang.org/x/net/ipv4/control_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/control_stub.go rename to cli/vendor/golang.org/x/net/ipv4/control_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/control_unix.go b/cli/vendor/golang.org/x/net/ipv4/control_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/control_unix.go rename to cli/vendor/golang.org/x/net/ipv4/control_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/control_windows.go b/cli/vendor/golang.org/x/net/ipv4/control_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/control_windows.go rename to cli/vendor/golang.org/x/net/ipv4/control_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_darwin.go b/cli/vendor/golang.org/x/net/ipv4/defs_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_darwin.go rename to cli/vendor/golang.org/x/net/ipv4/defs_darwin.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_dragonfly.go b/cli/vendor/golang.org/x/net/ipv4/defs_dragonfly.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_dragonfly.go rename to cli/vendor/golang.org/x/net/ipv4/defs_dragonfly.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_freebsd.go b/cli/vendor/golang.org/x/net/ipv4/defs_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_freebsd.go rename to cli/vendor/golang.org/x/net/ipv4/defs_freebsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_linux.go b/cli/vendor/golang.org/x/net/ipv4/defs_linux.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_linux.go rename to cli/vendor/golang.org/x/net/ipv4/defs_linux.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_netbsd.go b/cli/vendor/golang.org/x/net/ipv4/defs_netbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_netbsd.go rename to cli/vendor/golang.org/x/net/ipv4/defs_netbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_openbsd.go b/cli/vendor/golang.org/x/net/ipv4/defs_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_openbsd.go rename to cli/vendor/golang.org/x/net/ipv4/defs_openbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/defs_solaris.go b/cli/vendor/golang.org/x/net/ipv4/defs_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/defs_solaris.go rename to cli/vendor/golang.org/x/net/ipv4/defs_solaris.go diff --git a/fn/vendor/golang.org/x/net/ipv4/dgramopt_posix.go b/cli/vendor/golang.org/x/net/ipv4/dgramopt_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/dgramopt_posix.go rename to cli/vendor/golang.org/x/net/ipv4/dgramopt_posix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/dgramopt_stub.go b/cli/vendor/golang.org/x/net/ipv4/dgramopt_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/dgramopt_stub.go rename to cli/vendor/golang.org/x/net/ipv4/dgramopt_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/doc.go b/cli/vendor/golang.org/x/net/ipv4/doc.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/doc.go rename to cli/vendor/golang.org/x/net/ipv4/doc.go diff --git a/fn/vendor/golang.org/x/net/ipv4/endpoint.go b/cli/vendor/golang.org/x/net/ipv4/endpoint.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/endpoint.go rename to cli/vendor/golang.org/x/net/ipv4/endpoint.go diff --git a/fn/vendor/golang.org/x/net/ipv4/example_test.go b/cli/vendor/golang.org/x/net/ipv4/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/example_test.go rename to cli/vendor/golang.org/x/net/ipv4/example_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/gen.go b/cli/vendor/golang.org/x/net/ipv4/gen.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/gen.go rename to cli/vendor/golang.org/x/net/ipv4/gen.go diff --git a/fn/vendor/golang.org/x/net/ipv4/genericopt_posix.go b/cli/vendor/golang.org/x/net/ipv4/genericopt_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/genericopt_posix.go rename to cli/vendor/golang.org/x/net/ipv4/genericopt_posix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/genericopt_stub.go b/cli/vendor/golang.org/x/net/ipv4/genericopt_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/genericopt_stub.go rename to cli/vendor/golang.org/x/net/ipv4/genericopt_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/header.go b/cli/vendor/golang.org/x/net/ipv4/header.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/header.go rename to cli/vendor/golang.org/x/net/ipv4/header.go diff --git a/fn/vendor/golang.org/x/net/ipv4/header_test.go b/cli/vendor/golang.org/x/net/ipv4/header_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/header_test.go rename to cli/vendor/golang.org/x/net/ipv4/header_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/helper.go b/cli/vendor/golang.org/x/net/ipv4/helper.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/helper.go rename to cli/vendor/golang.org/x/net/ipv4/helper.go diff --git a/fn/vendor/golang.org/x/net/ipv4/helper_stub.go b/cli/vendor/golang.org/x/net/ipv4/helper_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/helper_stub.go rename to cli/vendor/golang.org/x/net/ipv4/helper_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/helper_unix.go b/cli/vendor/golang.org/x/net/ipv4/helper_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/helper_unix.go rename to cli/vendor/golang.org/x/net/ipv4/helper_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/helper_windows.go b/cli/vendor/golang.org/x/net/ipv4/helper_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/helper_windows.go rename to cli/vendor/golang.org/x/net/ipv4/helper_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv4/iana.go b/cli/vendor/golang.org/x/net/ipv4/iana.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/iana.go rename to cli/vendor/golang.org/x/net/ipv4/iana.go diff --git a/fn/vendor/golang.org/x/net/ipv4/icmp.go b/cli/vendor/golang.org/x/net/ipv4/icmp.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/icmp.go rename to cli/vendor/golang.org/x/net/ipv4/icmp.go diff --git a/fn/vendor/golang.org/x/net/ipv4/icmp_linux.go b/cli/vendor/golang.org/x/net/ipv4/icmp_linux.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/icmp_linux.go rename to cli/vendor/golang.org/x/net/ipv4/icmp_linux.go diff --git a/fn/vendor/golang.org/x/net/ipv4/icmp_stub.go b/cli/vendor/golang.org/x/net/ipv4/icmp_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/icmp_stub.go rename to cli/vendor/golang.org/x/net/ipv4/icmp_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/icmp_test.go b/cli/vendor/golang.org/x/net/ipv4/icmp_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/icmp_test.go rename to cli/vendor/golang.org/x/net/ipv4/icmp_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/mocktransponder_test.go b/cli/vendor/golang.org/x/net/ipv4/mocktransponder_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/mocktransponder_test.go rename to cli/vendor/golang.org/x/net/ipv4/mocktransponder_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/multicast_test.go b/cli/vendor/golang.org/x/net/ipv4/multicast_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/multicast_test.go rename to cli/vendor/golang.org/x/net/ipv4/multicast_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/multicastlistener_test.go b/cli/vendor/golang.org/x/net/ipv4/multicastlistener_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/multicastlistener_test.go rename to cli/vendor/golang.org/x/net/ipv4/multicastlistener_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/multicastsockopt_test.go b/cli/vendor/golang.org/x/net/ipv4/multicastsockopt_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/multicastsockopt_test.go rename to cli/vendor/golang.org/x/net/ipv4/multicastsockopt_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/packet.go b/cli/vendor/golang.org/x/net/ipv4/packet.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/packet.go rename to cli/vendor/golang.org/x/net/ipv4/packet.go diff --git a/fn/vendor/golang.org/x/net/ipv4/payload.go b/cli/vendor/golang.org/x/net/ipv4/payload.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/payload.go rename to cli/vendor/golang.org/x/net/ipv4/payload.go diff --git a/fn/vendor/golang.org/x/net/ipv4/payload_cmsg.go b/cli/vendor/golang.org/x/net/ipv4/payload_cmsg.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/payload_cmsg.go rename to cli/vendor/golang.org/x/net/ipv4/payload_cmsg.go diff --git a/fn/vendor/golang.org/x/net/ipv4/payload_nocmsg.go b/cli/vendor/golang.org/x/net/ipv4/payload_nocmsg.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/payload_nocmsg.go rename to cli/vendor/golang.org/x/net/ipv4/payload_nocmsg.go diff --git a/fn/vendor/golang.org/x/net/ipv4/readwrite_test.go b/cli/vendor/golang.org/x/net/ipv4/readwrite_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/readwrite_test.go rename to cli/vendor/golang.org/x/net/ipv4/readwrite_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt.go b/cli/vendor/golang.org/x/net/ipv4/sockopt.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq_stub.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq_stub.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq_unix.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq_unix.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq_windows.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_asmreq_windows.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_asmreq_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_stub.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_stub.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_unix.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_unix.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_asmreqn_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_stub.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_stub.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_unix.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_unix.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_ssmreq_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_stub.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_stub.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_unix.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_unix.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sockopt_windows.go b/cli/vendor/golang.org/x/net/ipv4/sockopt_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sockopt_windows.go rename to cli/vendor/golang.org/x/net/ipv4/sockopt_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_bsd.go b/cli/vendor/golang.org/x/net/ipv4/sys_bsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_bsd.go rename to cli/vendor/golang.org/x/net/ipv4/sys_bsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_darwin.go b/cli/vendor/golang.org/x/net/ipv4/sys_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_darwin.go rename to cli/vendor/golang.org/x/net/ipv4/sys_darwin.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_freebsd.go b/cli/vendor/golang.org/x/net/ipv4/sys_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_freebsd.go rename to cli/vendor/golang.org/x/net/ipv4/sys_freebsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_linux.go b/cli/vendor/golang.org/x/net/ipv4/sys_linux.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_linux.go rename to cli/vendor/golang.org/x/net/ipv4/sys_linux.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_openbsd.go b/cli/vendor/golang.org/x/net/ipv4/sys_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_openbsd.go rename to cli/vendor/golang.org/x/net/ipv4/sys_openbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_stub.go b/cli/vendor/golang.org/x/net/ipv4/sys_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_stub.go rename to cli/vendor/golang.org/x/net/ipv4/sys_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv4/sys_windows.go b/cli/vendor/golang.org/x/net/ipv4/sys_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/sys_windows.go rename to cli/vendor/golang.org/x/net/ipv4/sys_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv4/syscall_linux_386.go b/cli/vendor/golang.org/x/net/ipv4/syscall_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/syscall_linux_386.go rename to cli/vendor/golang.org/x/net/ipv4/syscall_linux_386.go diff --git a/fn/vendor/golang.org/x/net/ipv4/syscall_unix.go b/cli/vendor/golang.org/x/net/ipv4/syscall_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/syscall_unix.go rename to cli/vendor/golang.org/x/net/ipv4/syscall_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv4/thunk_linux_386.s b/cli/vendor/golang.org/x/net/ipv4/thunk_linux_386.s similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/thunk_linux_386.s rename to cli/vendor/golang.org/x/net/ipv4/thunk_linux_386.s diff --git a/fn/vendor/golang.org/x/net/ipv4/unicast_test.go b/cli/vendor/golang.org/x/net/ipv4/unicast_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/unicast_test.go rename to cli/vendor/golang.org/x/net/ipv4/unicast_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/unicastsockopt_test.go b/cli/vendor/golang.org/x/net/ipv4/unicastsockopt_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/unicastsockopt_test.go rename to cli/vendor/golang.org/x/net/ipv4/unicastsockopt_test.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_darwin.go b/cli/vendor/golang.org/x/net/ipv4/zsys_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_darwin.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_darwin.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go b/cli/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go b/cli/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go b/cli/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go b/cli/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_386.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_386.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_386.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go b/cli/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_netbsd.go b/cli/vendor/golang.org/x/net/ipv4/zsys_netbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_netbsd.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_netbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_openbsd.go b/cli/vendor/golang.org/x/net/ipv4/zsys_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_openbsd.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_openbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv4/zsys_solaris.go b/cli/vendor/golang.org/x/net/ipv4/zsys_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv4/zsys_solaris.go rename to cli/vendor/golang.org/x/net/ipv4/zsys_solaris.go diff --git a/fn/vendor/golang.org/x/net/ipv6/control.go b/cli/vendor/golang.org/x/net/ipv6/control.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/control.go rename to cli/vendor/golang.org/x/net/ipv6/control.go diff --git a/fn/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go b/cli/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go rename to cli/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go b/cli/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go rename to cli/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/control_stub.go b/cli/vendor/golang.org/x/net/ipv6/control_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/control_stub.go rename to cli/vendor/golang.org/x/net/ipv6/control_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/control_unix.go b/cli/vendor/golang.org/x/net/ipv6/control_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/control_unix.go rename to cli/vendor/golang.org/x/net/ipv6/control_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/control_windows.go b/cli/vendor/golang.org/x/net/ipv6/control_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/control_windows.go rename to cli/vendor/golang.org/x/net/ipv6/control_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_darwin.go b/cli/vendor/golang.org/x/net/ipv6/defs_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_darwin.go rename to cli/vendor/golang.org/x/net/ipv6/defs_darwin.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_dragonfly.go b/cli/vendor/golang.org/x/net/ipv6/defs_dragonfly.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_dragonfly.go rename to cli/vendor/golang.org/x/net/ipv6/defs_dragonfly.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_freebsd.go b/cli/vendor/golang.org/x/net/ipv6/defs_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_freebsd.go rename to cli/vendor/golang.org/x/net/ipv6/defs_freebsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_linux.go b/cli/vendor/golang.org/x/net/ipv6/defs_linux.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_linux.go rename to cli/vendor/golang.org/x/net/ipv6/defs_linux.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_netbsd.go b/cli/vendor/golang.org/x/net/ipv6/defs_netbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_netbsd.go rename to cli/vendor/golang.org/x/net/ipv6/defs_netbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_openbsd.go b/cli/vendor/golang.org/x/net/ipv6/defs_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_openbsd.go rename to cli/vendor/golang.org/x/net/ipv6/defs_openbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/defs_solaris.go b/cli/vendor/golang.org/x/net/ipv6/defs_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/defs_solaris.go rename to cli/vendor/golang.org/x/net/ipv6/defs_solaris.go diff --git a/fn/vendor/golang.org/x/net/ipv6/dgramopt_posix.go b/cli/vendor/golang.org/x/net/ipv6/dgramopt_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/dgramopt_posix.go rename to cli/vendor/golang.org/x/net/ipv6/dgramopt_posix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/dgramopt_stub.go b/cli/vendor/golang.org/x/net/ipv6/dgramopt_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/dgramopt_stub.go rename to cli/vendor/golang.org/x/net/ipv6/dgramopt_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/doc.go b/cli/vendor/golang.org/x/net/ipv6/doc.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/doc.go rename to cli/vendor/golang.org/x/net/ipv6/doc.go diff --git a/fn/vendor/golang.org/x/net/ipv6/endpoint.go b/cli/vendor/golang.org/x/net/ipv6/endpoint.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/endpoint.go rename to cli/vendor/golang.org/x/net/ipv6/endpoint.go diff --git a/fn/vendor/golang.org/x/net/ipv6/example_test.go b/cli/vendor/golang.org/x/net/ipv6/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/example_test.go rename to cli/vendor/golang.org/x/net/ipv6/example_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/gen.go b/cli/vendor/golang.org/x/net/ipv6/gen.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/gen.go rename to cli/vendor/golang.org/x/net/ipv6/gen.go diff --git a/fn/vendor/golang.org/x/net/ipv6/genericopt_posix.go b/cli/vendor/golang.org/x/net/ipv6/genericopt_posix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/genericopt_posix.go rename to cli/vendor/golang.org/x/net/ipv6/genericopt_posix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/genericopt_stub.go b/cli/vendor/golang.org/x/net/ipv6/genericopt_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/genericopt_stub.go rename to cli/vendor/golang.org/x/net/ipv6/genericopt_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/header.go b/cli/vendor/golang.org/x/net/ipv6/header.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/header.go rename to cli/vendor/golang.org/x/net/ipv6/header.go diff --git a/fn/vendor/golang.org/x/net/ipv6/header_test.go b/cli/vendor/golang.org/x/net/ipv6/header_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/header_test.go rename to cli/vendor/golang.org/x/net/ipv6/header_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/helper.go b/cli/vendor/golang.org/x/net/ipv6/helper.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/helper.go rename to cli/vendor/golang.org/x/net/ipv6/helper.go diff --git a/fn/vendor/golang.org/x/net/ipv6/helper_stub.go b/cli/vendor/golang.org/x/net/ipv6/helper_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/helper_stub.go rename to cli/vendor/golang.org/x/net/ipv6/helper_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/helper_unix.go b/cli/vendor/golang.org/x/net/ipv6/helper_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/helper_unix.go rename to cli/vendor/golang.org/x/net/ipv6/helper_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/helper_windows.go b/cli/vendor/golang.org/x/net/ipv6/helper_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/helper_windows.go rename to cli/vendor/golang.org/x/net/ipv6/helper_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv6/iana.go b/cli/vendor/golang.org/x/net/ipv6/iana.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/iana.go rename to cli/vendor/golang.org/x/net/ipv6/iana.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp.go b/cli/vendor/golang.org/x/net/ipv6/icmp.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp.go rename to cli/vendor/golang.org/x/net/ipv6/icmp.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp_bsd.go b/cli/vendor/golang.org/x/net/ipv6/icmp_bsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp_bsd.go rename to cli/vendor/golang.org/x/net/ipv6/icmp_bsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp_linux.go b/cli/vendor/golang.org/x/net/ipv6/icmp_linux.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp_linux.go rename to cli/vendor/golang.org/x/net/ipv6/icmp_linux.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp_solaris.go b/cli/vendor/golang.org/x/net/ipv6/icmp_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp_solaris.go rename to cli/vendor/golang.org/x/net/ipv6/icmp_solaris.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp_stub.go b/cli/vendor/golang.org/x/net/ipv6/icmp_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp_stub.go rename to cli/vendor/golang.org/x/net/ipv6/icmp_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp_test.go b/cli/vendor/golang.org/x/net/ipv6/icmp_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp_test.go rename to cli/vendor/golang.org/x/net/ipv6/icmp_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/icmp_windows.go b/cli/vendor/golang.org/x/net/ipv6/icmp_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/icmp_windows.go rename to cli/vendor/golang.org/x/net/ipv6/icmp_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv6/mocktransponder_test.go b/cli/vendor/golang.org/x/net/ipv6/mocktransponder_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/mocktransponder_test.go rename to cli/vendor/golang.org/x/net/ipv6/mocktransponder_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/multicast_test.go b/cli/vendor/golang.org/x/net/ipv6/multicast_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/multicast_test.go rename to cli/vendor/golang.org/x/net/ipv6/multicast_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/multicastlistener_test.go b/cli/vendor/golang.org/x/net/ipv6/multicastlistener_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/multicastlistener_test.go rename to cli/vendor/golang.org/x/net/ipv6/multicastlistener_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/multicastsockopt_test.go b/cli/vendor/golang.org/x/net/ipv6/multicastsockopt_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/multicastsockopt_test.go rename to cli/vendor/golang.org/x/net/ipv6/multicastsockopt_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/payload.go b/cli/vendor/golang.org/x/net/ipv6/payload.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/payload.go rename to cli/vendor/golang.org/x/net/ipv6/payload.go diff --git a/fn/vendor/golang.org/x/net/ipv6/payload_cmsg.go b/cli/vendor/golang.org/x/net/ipv6/payload_cmsg.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/payload_cmsg.go rename to cli/vendor/golang.org/x/net/ipv6/payload_cmsg.go diff --git a/fn/vendor/golang.org/x/net/ipv6/payload_nocmsg.go b/cli/vendor/golang.org/x/net/ipv6/payload_nocmsg.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/payload_nocmsg.go rename to cli/vendor/golang.org/x/net/ipv6/payload_nocmsg.go diff --git a/fn/vendor/golang.org/x/net/ipv6/readwrite_test.go b/cli/vendor/golang.org/x/net/ipv6/readwrite_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/readwrite_test.go rename to cli/vendor/golang.org/x/net/ipv6/readwrite_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt.go b/cli/vendor/golang.org/x/net/ipv6/sockopt.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_asmreq_unix.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_asmreq_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_asmreq_unix.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_asmreq_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_asmreq_windows.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_asmreq_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_asmreq_windows.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_asmreq_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_stub.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_stub.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_unix.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_unix.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_ssmreq_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_stub.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_stub.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_test.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_test.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_unix.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_unix.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sockopt_windows.go b/cli/vendor/golang.org/x/net/ipv6/sockopt_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sockopt_windows.go rename to cli/vendor/golang.org/x/net/ipv6/sockopt_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sys_bsd.go b/cli/vendor/golang.org/x/net/ipv6/sys_bsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sys_bsd.go rename to cli/vendor/golang.org/x/net/ipv6/sys_bsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sys_darwin.go b/cli/vendor/golang.org/x/net/ipv6/sys_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sys_darwin.go rename to cli/vendor/golang.org/x/net/ipv6/sys_darwin.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sys_freebsd.go b/cli/vendor/golang.org/x/net/ipv6/sys_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sys_freebsd.go rename to cli/vendor/golang.org/x/net/ipv6/sys_freebsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sys_linux.go b/cli/vendor/golang.org/x/net/ipv6/sys_linux.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sys_linux.go rename to cli/vendor/golang.org/x/net/ipv6/sys_linux.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sys_stub.go b/cli/vendor/golang.org/x/net/ipv6/sys_stub.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sys_stub.go rename to cli/vendor/golang.org/x/net/ipv6/sys_stub.go diff --git a/fn/vendor/golang.org/x/net/ipv6/sys_windows.go b/cli/vendor/golang.org/x/net/ipv6/sys_windows.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/sys_windows.go rename to cli/vendor/golang.org/x/net/ipv6/sys_windows.go diff --git a/fn/vendor/golang.org/x/net/ipv6/syscall_linux_386.go b/cli/vendor/golang.org/x/net/ipv6/syscall_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/syscall_linux_386.go rename to cli/vendor/golang.org/x/net/ipv6/syscall_linux_386.go diff --git a/fn/vendor/golang.org/x/net/ipv6/syscall_unix.go b/cli/vendor/golang.org/x/net/ipv6/syscall_unix.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/syscall_unix.go rename to cli/vendor/golang.org/x/net/ipv6/syscall_unix.go diff --git a/fn/vendor/golang.org/x/net/ipv6/thunk_linux_386.s b/cli/vendor/golang.org/x/net/ipv6/thunk_linux_386.s similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/thunk_linux_386.s rename to cli/vendor/golang.org/x/net/ipv6/thunk_linux_386.s diff --git a/fn/vendor/golang.org/x/net/ipv6/unicast_test.go b/cli/vendor/golang.org/x/net/ipv6/unicast_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/unicast_test.go rename to cli/vendor/golang.org/x/net/ipv6/unicast_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/unicastsockopt_test.go b/cli/vendor/golang.org/x/net/ipv6/unicastsockopt_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/unicastsockopt_test.go rename to cli/vendor/golang.org/x/net/ipv6/unicastsockopt_test.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_darwin.go b/cli/vendor/golang.org/x/net/ipv6/zsys_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_darwin.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_darwin.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go b/cli/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go b/cli/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go b/cli/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go b/cli/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_386.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_386.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_386.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go b/cli/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_netbsd.go b/cli/vendor/golang.org/x/net/ipv6/zsys_netbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_netbsd.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_netbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_openbsd.go b/cli/vendor/golang.org/x/net/ipv6/zsys_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_openbsd.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_openbsd.go diff --git a/fn/vendor/golang.org/x/net/ipv6/zsys_solaris.go b/cli/vendor/golang.org/x/net/ipv6/zsys_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/net/ipv6/zsys_solaris.go rename to cli/vendor/golang.org/x/net/ipv6/zsys_solaris.go diff --git a/fn/vendor/golang.org/x/net/netutil/listen.go b/cli/vendor/golang.org/x/net/netutil/listen.go similarity index 100% rename from fn/vendor/golang.org/x/net/netutil/listen.go rename to cli/vendor/golang.org/x/net/netutil/listen.go diff --git a/fn/vendor/golang.org/x/net/netutil/listen_test.go b/cli/vendor/golang.org/x/net/netutil/listen_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/netutil/listen_test.go rename to cli/vendor/golang.org/x/net/netutil/listen_test.go diff --git a/fn/vendor/golang.org/x/net/proxy/direct.go b/cli/vendor/golang.org/x/net/proxy/direct.go similarity index 100% rename from fn/vendor/golang.org/x/net/proxy/direct.go rename to cli/vendor/golang.org/x/net/proxy/direct.go diff --git a/fn/vendor/golang.org/x/net/proxy/per_host.go b/cli/vendor/golang.org/x/net/proxy/per_host.go similarity index 100% rename from fn/vendor/golang.org/x/net/proxy/per_host.go rename to cli/vendor/golang.org/x/net/proxy/per_host.go diff --git a/fn/vendor/golang.org/x/net/proxy/per_host_test.go b/cli/vendor/golang.org/x/net/proxy/per_host_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/proxy/per_host_test.go rename to cli/vendor/golang.org/x/net/proxy/per_host_test.go diff --git a/fn/vendor/golang.org/x/net/proxy/proxy.go b/cli/vendor/golang.org/x/net/proxy/proxy.go similarity index 100% rename from fn/vendor/golang.org/x/net/proxy/proxy.go rename to cli/vendor/golang.org/x/net/proxy/proxy.go diff --git a/fn/vendor/golang.org/x/net/proxy/proxy_test.go b/cli/vendor/golang.org/x/net/proxy/proxy_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/proxy/proxy_test.go rename to cli/vendor/golang.org/x/net/proxy/proxy_test.go diff --git a/fn/vendor/golang.org/x/net/proxy/socks5.go b/cli/vendor/golang.org/x/net/proxy/socks5.go similarity index 100% rename from fn/vendor/golang.org/x/net/proxy/socks5.go rename to cli/vendor/golang.org/x/net/proxy/socks5.go diff --git a/fn/vendor/golang.org/x/net/publicsuffix/gen.go b/cli/vendor/golang.org/x/net/publicsuffix/gen.go similarity index 100% rename from fn/vendor/golang.org/x/net/publicsuffix/gen.go rename to cli/vendor/golang.org/x/net/publicsuffix/gen.go diff --git a/fn/vendor/golang.org/x/net/publicsuffix/list.go b/cli/vendor/golang.org/x/net/publicsuffix/list.go similarity index 100% rename from fn/vendor/golang.org/x/net/publicsuffix/list.go rename to cli/vendor/golang.org/x/net/publicsuffix/list.go diff --git a/fn/vendor/golang.org/x/net/publicsuffix/list_test.go b/cli/vendor/golang.org/x/net/publicsuffix/list_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/publicsuffix/list_test.go rename to cli/vendor/golang.org/x/net/publicsuffix/list_test.go diff --git a/fn/vendor/golang.org/x/net/publicsuffix/table.go b/cli/vendor/golang.org/x/net/publicsuffix/table.go similarity index 100% rename from fn/vendor/golang.org/x/net/publicsuffix/table.go rename to cli/vendor/golang.org/x/net/publicsuffix/table.go diff --git a/fn/vendor/golang.org/x/net/publicsuffix/table_test.go b/cli/vendor/golang.org/x/net/publicsuffix/table_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/publicsuffix/table_test.go rename to cli/vendor/golang.org/x/net/publicsuffix/table_test.go diff --git a/fn/vendor/golang.org/x/net/trace/events.go b/cli/vendor/golang.org/x/net/trace/events.go similarity index 100% rename from fn/vendor/golang.org/x/net/trace/events.go rename to cli/vendor/golang.org/x/net/trace/events.go diff --git a/fn/vendor/golang.org/x/net/trace/histogram.go b/cli/vendor/golang.org/x/net/trace/histogram.go similarity index 100% rename from fn/vendor/golang.org/x/net/trace/histogram.go rename to cli/vendor/golang.org/x/net/trace/histogram.go diff --git a/fn/vendor/golang.org/x/net/trace/histogram_test.go b/cli/vendor/golang.org/x/net/trace/histogram_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/trace/histogram_test.go rename to cli/vendor/golang.org/x/net/trace/histogram_test.go diff --git a/fn/vendor/golang.org/x/net/trace/trace.go b/cli/vendor/golang.org/x/net/trace/trace.go similarity index 100% rename from fn/vendor/golang.org/x/net/trace/trace.go rename to cli/vendor/golang.org/x/net/trace/trace.go diff --git a/fn/vendor/golang.org/x/net/trace/trace_test.go b/cli/vendor/golang.org/x/net/trace/trace_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/trace/trace_test.go rename to cli/vendor/golang.org/x/net/trace/trace_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/file.go b/cli/vendor/golang.org/x/net/webdav/file.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/file.go rename to cli/vendor/golang.org/x/net/webdav/file.go diff --git a/fn/vendor/golang.org/x/net/webdav/file_test.go b/cli/vendor/golang.org/x/net/webdav/file_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/file_test.go rename to cli/vendor/golang.org/x/net/webdav/file_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/if.go b/cli/vendor/golang.org/x/net/webdav/if.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/if.go rename to cli/vendor/golang.org/x/net/webdav/if.go diff --git a/fn/vendor/golang.org/x/net/webdav/if_test.go b/cli/vendor/golang.org/x/net/webdav/if_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/if_test.go rename to cli/vendor/golang.org/x/net/webdav/if_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/README b/cli/vendor/golang.org/x/net/webdav/internal/xml/README similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/README rename to cli/vendor/golang.org/x/net/webdav/internal/xml/README diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/atom_test.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/atom_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/atom_test.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/atom_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/example_test.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/example_test.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/example_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/marshal.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/marshal.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/marshal.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/marshal.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/marshal_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/read.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/read.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/read.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/read.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/read_test.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/read_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/read_test.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/read_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/typeinfo.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/xml.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/xml.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/xml.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/xml.go diff --git a/fn/vendor/golang.org/x/net/webdav/internal/xml/xml_test.go b/cli/vendor/golang.org/x/net/webdav/internal/xml/xml_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/internal/xml/xml_test.go rename to cli/vendor/golang.org/x/net/webdav/internal/xml/xml_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/litmus_test_server.go b/cli/vendor/golang.org/x/net/webdav/litmus_test_server.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/litmus_test_server.go rename to cli/vendor/golang.org/x/net/webdav/litmus_test_server.go diff --git a/fn/vendor/golang.org/x/net/webdav/lock.go b/cli/vendor/golang.org/x/net/webdav/lock.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/lock.go rename to cli/vendor/golang.org/x/net/webdav/lock.go diff --git a/fn/vendor/golang.org/x/net/webdav/lock_test.go b/cli/vendor/golang.org/x/net/webdav/lock_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/lock_test.go rename to cli/vendor/golang.org/x/net/webdav/lock_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/prop.go b/cli/vendor/golang.org/x/net/webdav/prop.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/prop.go rename to cli/vendor/golang.org/x/net/webdav/prop.go diff --git a/fn/vendor/golang.org/x/net/webdav/prop_test.go b/cli/vendor/golang.org/x/net/webdav/prop_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/prop_test.go rename to cli/vendor/golang.org/x/net/webdav/prop_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/webdav.go b/cli/vendor/golang.org/x/net/webdav/webdav.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/webdav.go rename to cli/vendor/golang.org/x/net/webdav/webdav.go diff --git a/fn/vendor/golang.org/x/net/webdav/webdav_test.go b/cli/vendor/golang.org/x/net/webdav/webdav_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/webdav_test.go rename to cli/vendor/golang.org/x/net/webdav/webdav_test.go diff --git a/fn/vendor/golang.org/x/net/webdav/xml.go b/cli/vendor/golang.org/x/net/webdav/xml.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/xml.go rename to cli/vendor/golang.org/x/net/webdav/xml.go diff --git a/fn/vendor/golang.org/x/net/webdav/xml_test.go b/cli/vendor/golang.org/x/net/webdav/xml_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/webdav/xml_test.go rename to cli/vendor/golang.org/x/net/webdav/xml_test.go diff --git a/fn/vendor/golang.org/x/net/websocket/client.go b/cli/vendor/golang.org/x/net/websocket/client.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/client.go rename to cli/vendor/golang.org/x/net/websocket/client.go diff --git a/fn/vendor/golang.org/x/net/websocket/exampledial_test.go b/cli/vendor/golang.org/x/net/websocket/exampledial_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/exampledial_test.go rename to cli/vendor/golang.org/x/net/websocket/exampledial_test.go diff --git a/fn/vendor/golang.org/x/net/websocket/examplehandler_test.go b/cli/vendor/golang.org/x/net/websocket/examplehandler_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/examplehandler_test.go rename to cli/vendor/golang.org/x/net/websocket/examplehandler_test.go diff --git a/fn/vendor/golang.org/x/net/websocket/hybi.go b/cli/vendor/golang.org/x/net/websocket/hybi.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/hybi.go rename to cli/vendor/golang.org/x/net/websocket/hybi.go diff --git a/fn/vendor/golang.org/x/net/websocket/hybi_test.go b/cli/vendor/golang.org/x/net/websocket/hybi_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/hybi_test.go rename to cli/vendor/golang.org/x/net/websocket/hybi_test.go diff --git a/fn/vendor/golang.org/x/net/websocket/server.go b/cli/vendor/golang.org/x/net/websocket/server.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/server.go rename to cli/vendor/golang.org/x/net/websocket/server.go diff --git a/fn/vendor/golang.org/x/net/websocket/websocket.go b/cli/vendor/golang.org/x/net/websocket/websocket.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/websocket.go rename to cli/vendor/golang.org/x/net/websocket/websocket.go diff --git a/fn/vendor/golang.org/x/net/websocket/websocket_test.go b/cli/vendor/golang.org/x/net/websocket/websocket_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/websocket/websocket_test.go rename to cli/vendor/golang.org/x/net/websocket/websocket_test.go diff --git a/fn/vendor/golang.org/x/net/xsrftoken/xsrf.go b/cli/vendor/golang.org/x/net/xsrftoken/xsrf.go similarity index 100% rename from fn/vendor/golang.org/x/net/xsrftoken/xsrf.go rename to cli/vendor/golang.org/x/net/xsrftoken/xsrf.go diff --git a/fn/vendor/golang.org/x/net/xsrftoken/xsrf_test.go b/cli/vendor/golang.org/x/net/xsrftoken/xsrf_test.go similarity index 100% rename from fn/vendor/golang.org/x/net/xsrftoken/xsrf_test.go rename to cli/vendor/golang.org/x/net/xsrftoken/xsrf_test.go diff --git a/fn/vendor/golang.org/x/sys/.gitattributes b/cli/vendor/golang.org/x/sys/.gitattributes similarity index 100% rename from fn/vendor/golang.org/x/sys/.gitattributes rename to cli/vendor/golang.org/x/sys/.gitattributes diff --git a/fn/vendor/golang.org/x/sys/.gitignore b/cli/vendor/golang.org/x/sys/.gitignore similarity index 100% rename from fn/vendor/golang.org/x/sys/.gitignore rename to cli/vendor/golang.org/x/sys/.gitignore diff --git a/fn/vendor/golang.org/x/sys/AUTHORS b/cli/vendor/golang.org/x/sys/AUTHORS similarity index 100% rename from fn/vendor/golang.org/x/sys/AUTHORS rename to cli/vendor/golang.org/x/sys/AUTHORS diff --git a/fn/vendor/golang.org/x/sys/CONTRIBUTING.md b/cli/vendor/golang.org/x/sys/CONTRIBUTING.md similarity index 100% rename from fn/vendor/golang.org/x/sys/CONTRIBUTING.md rename to cli/vendor/golang.org/x/sys/CONTRIBUTING.md diff --git a/fn/vendor/golang.org/x/sys/CONTRIBUTORS b/cli/vendor/golang.org/x/sys/CONTRIBUTORS similarity index 100% rename from fn/vendor/golang.org/x/sys/CONTRIBUTORS rename to cli/vendor/golang.org/x/sys/CONTRIBUTORS diff --git a/fn/vendor/golang.org/x/sys/LICENSE b/cli/vendor/golang.org/x/sys/LICENSE similarity index 100% rename from fn/vendor/golang.org/x/sys/LICENSE rename to cli/vendor/golang.org/x/sys/LICENSE diff --git a/fn/vendor/golang.org/x/sys/PATENTS b/cli/vendor/golang.org/x/sys/PATENTS similarity index 100% rename from fn/vendor/golang.org/x/sys/PATENTS rename to cli/vendor/golang.org/x/sys/PATENTS diff --git a/fn/vendor/golang.org/x/sys/README b/cli/vendor/golang.org/x/sys/README similarity index 100% rename from fn/vendor/golang.org/x/sys/README rename to cli/vendor/golang.org/x/sys/README diff --git a/fn/vendor/golang.org/x/sys/codereview.cfg b/cli/vendor/golang.org/x/sys/codereview.cfg similarity index 100% rename from fn/vendor/golang.org/x/sys/codereview.cfg rename to cli/vendor/golang.org/x/sys/codereview.cfg diff --git a/fn/vendor/golang.org/x/sys/plan9/asm.s b/cli/vendor/golang.org/x/sys/plan9/asm.s similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/asm.s rename to cli/vendor/golang.org/x/sys/plan9/asm.s diff --git a/fn/vendor/golang.org/x/sys/plan9/asm_plan9_386.s b/cli/vendor/golang.org/x/sys/plan9/asm_plan9_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/asm_plan9_386.s rename to cli/vendor/golang.org/x/sys/plan9/asm_plan9_386.s diff --git a/fn/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s b/cli/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s rename to cli/vendor/golang.org/x/sys/plan9/asm_plan9_amd64.s diff --git a/fn/vendor/golang.org/x/sys/plan9/const_plan9.go b/cli/vendor/golang.org/x/sys/plan9/const_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/const_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/const_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/dir_plan9.go b/cli/vendor/golang.org/x/sys/plan9/dir_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/dir_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/dir_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/env_plan9.go b/cli/vendor/golang.org/x/sys/plan9/env_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/env_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/env_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/env_unset.go b/cli/vendor/golang.org/x/sys/plan9/env_unset.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/env_unset.go rename to cli/vendor/golang.org/x/sys/plan9/env_unset.go diff --git a/fn/vendor/golang.org/x/sys/plan9/errors_plan9.go b/cli/vendor/golang.org/x/sys/plan9/errors_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/errors_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/errors_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/mkall.sh b/cli/vendor/golang.org/x/sys/plan9/mkall.sh similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/mkall.sh rename to cli/vendor/golang.org/x/sys/plan9/mkall.sh diff --git a/fn/vendor/golang.org/x/sys/plan9/mkerrors.sh b/cli/vendor/golang.org/x/sys/plan9/mkerrors.sh similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/mkerrors.sh rename to cli/vendor/golang.org/x/sys/plan9/mkerrors.sh diff --git a/fn/vendor/golang.org/x/sys/plan9/mksyscall.pl b/cli/vendor/golang.org/x/sys/plan9/mksyscall.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/mksyscall.pl rename to cli/vendor/golang.org/x/sys/plan9/mksyscall.pl diff --git a/fn/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh b/cli/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh rename to cli/vendor/golang.org/x/sys/plan9/mksysnum_plan9.sh diff --git a/fn/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go b/cli/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/pwd_go15_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/pwd_plan9.go b/cli/vendor/golang.org/x/sys/plan9/pwd_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/pwd_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/pwd_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/race.go b/cli/vendor/golang.org/x/sys/plan9/race.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/race.go rename to cli/vendor/golang.org/x/sys/plan9/race.go diff --git a/fn/vendor/golang.org/x/sys/plan9/race0.go b/cli/vendor/golang.org/x/sys/plan9/race0.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/race0.go rename to cli/vendor/golang.org/x/sys/plan9/race0.go diff --git a/fn/vendor/golang.org/x/sys/plan9/str.go b/cli/vendor/golang.org/x/sys/plan9/str.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/str.go rename to cli/vendor/golang.org/x/sys/plan9/str.go diff --git a/fn/vendor/golang.org/x/sys/plan9/syscall.go b/cli/vendor/golang.org/x/sys/plan9/syscall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/syscall.go rename to cli/vendor/golang.org/x/sys/plan9/syscall.go diff --git a/fn/vendor/golang.org/x/sys/plan9/syscall_plan9.go b/cli/vendor/golang.org/x/sys/plan9/syscall_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/syscall_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/syscall_plan9.go diff --git a/fn/vendor/golang.org/x/sys/plan9/syscall_test.go b/cli/vendor/golang.org/x/sys/plan9/syscall_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/syscall_test.go rename to cli/vendor/golang.org/x/sys/plan9/syscall_test.go diff --git a/fn/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go b/cli/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go rename to cli/vendor/golang.org/x/sys/plan9/zsyscall_plan9_386.go diff --git a/fn/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go b/cli/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go rename to cli/vendor/golang.org/x/sys/plan9/zsyscall_plan9_amd64.go diff --git a/fn/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go b/cli/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go similarity index 100% rename from fn/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go rename to cli/vendor/golang.org/x/sys/plan9/zsysnum_plan9.go diff --git a/fn/vendor/golang.org/x/sys/unix/.gitignore b/cli/vendor/golang.org/x/sys/unix/.gitignore similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/.gitignore rename to cli/vendor/golang.org/x/sys/unix/.gitignore diff --git a/fn/vendor/golang.org/x/sys/unix/README.md b/cli/vendor/golang.org/x/sys/unix/README.md similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/README.md rename to cli/vendor/golang.org/x/sys/unix/README.md diff --git a/fn/vendor/golang.org/x/sys/unix/asm_darwin_386.s b/cli/vendor/golang.org/x/sys/unix/asm_darwin_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_darwin_386.s rename to cli/vendor/golang.org/x/sys/unix/asm_darwin_386.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_darwin_arm.s b/cli/vendor/golang.org/x/sys/unix/asm_darwin_arm.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_darwin_arm.s rename to cli/vendor/golang.org/x/sys/unix/asm_darwin_arm.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s b/cli/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s rename to cli/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_dragonfly_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_freebsd_386.s b/cli/vendor/golang.org/x/sys/unix/asm_freebsd_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_freebsd_386.s rename to cli/vendor/golang.org/x/sys/unix/asm_freebsd_386.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s b/cli/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s rename to cli/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_386.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_386.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_386.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_arm.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_arm.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_arm.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_arm.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_arm64.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_arm64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_arm64.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_arm64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_linux_s390x.s b/cli/vendor/golang.org/x/sys/unix/asm_linux_s390x.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_linux_s390x.s rename to cli/vendor/golang.org/x/sys/unix/asm_linux_s390x.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_netbsd_386.s b/cli/vendor/golang.org/x/sys/unix/asm_netbsd_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_netbsd_386.s rename to cli/vendor/golang.org/x/sys/unix/asm_netbsd_386.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s b/cli/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s rename to cli/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_openbsd_386.s b/cli/vendor/golang.org/x/sys/unix/asm_openbsd_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_openbsd_386.s rename to cli/vendor/golang.org/x/sys/unix/asm_openbsd_386.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s b/cli/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s rename to cli/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s diff --git a/fn/vendor/golang.org/x/sys/unix/bluetooth_linux.go b/cli/vendor/golang.org/x/sys/unix/bluetooth_linux.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/bluetooth_linux.go rename to cli/vendor/golang.org/x/sys/unix/bluetooth_linux.go diff --git a/fn/vendor/golang.org/x/sys/unix/constants.go b/cli/vendor/golang.org/x/sys/unix/constants.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/constants.go rename to cli/vendor/golang.org/x/sys/unix/constants.go diff --git a/fn/vendor/golang.org/x/sys/unix/creds_test.go b/cli/vendor/golang.org/x/sys/unix/creds_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/creds_test.go rename to cli/vendor/golang.org/x/sys/unix/creds_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/dirent.go b/cli/vendor/golang.org/x/sys/unix/dirent.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/dirent.go rename to cli/vendor/golang.org/x/sys/unix/dirent.go diff --git a/fn/vendor/golang.org/x/sys/unix/endian_big.go b/cli/vendor/golang.org/x/sys/unix/endian_big.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/endian_big.go rename to cli/vendor/golang.org/x/sys/unix/endian_big.go diff --git a/fn/vendor/golang.org/x/sys/unix/endian_little.go b/cli/vendor/golang.org/x/sys/unix/endian_little.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/endian_little.go rename to cli/vendor/golang.org/x/sys/unix/endian_little.go diff --git a/fn/vendor/golang.org/x/sys/unix/env_unix.go b/cli/vendor/golang.org/x/sys/unix/env_unix.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/env_unix.go rename to cli/vendor/golang.org/x/sys/unix/env_unix.go diff --git a/fn/vendor/golang.org/x/sys/unix/env_unset.go b/cli/vendor/golang.org/x/sys/unix/env_unset.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/env_unset.go rename to cli/vendor/golang.org/x/sys/unix/env_unset.go diff --git a/fn/vendor/golang.org/x/sys/unix/export_test.go b/cli/vendor/golang.org/x/sys/unix/export_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/export_test.go rename to cli/vendor/golang.org/x/sys/unix/export_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/flock.go b/cli/vendor/golang.org/x/sys/unix/flock.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/flock.go rename to cli/vendor/golang.org/x/sys/unix/flock.go diff --git a/fn/vendor/golang.org/x/sys/unix/flock_linux_32bit.go b/cli/vendor/golang.org/x/sys/unix/flock_linux_32bit.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/flock_linux_32bit.go rename to cli/vendor/golang.org/x/sys/unix/flock_linux_32bit.go diff --git a/fn/vendor/golang.org/x/sys/unix/gccgo.go b/cli/vendor/golang.org/x/sys/unix/gccgo.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/gccgo.go rename to cli/vendor/golang.org/x/sys/unix/gccgo.go diff --git a/fn/vendor/golang.org/x/sys/unix/gccgo_c.c b/cli/vendor/golang.org/x/sys/unix/gccgo_c.c similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/gccgo_c.c rename to cli/vendor/golang.org/x/sys/unix/gccgo_c.c diff --git a/fn/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go b/cli/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go rename to cli/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go b/cli/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go rename to cli/vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/linux/Dockerfile b/cli/vendor/golang.org/x/sys/unix/linux/Dockerfile similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/linux/Dockerfile rename to cli/vendor/golang.org/x/sys/unix/linux/Dockerfile diff --git a/fn/vendor/golang.org/x/sys/unix/linux/mkall.go b/cli/vendor/golang.org/x/sys/unix/linux/mkall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/linux/mkall.go rename to cli/vendor/golang.org/x/sys/unix/linux/mkall.go diff --git a/fn/vendor/golang.org/x/sys/unix/linux/mksysnum.pl b/cli/vendor/golang.org/x/sys/unix/linux/mksysnum.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/linux/mksysnum.pl rename to cli/vendor/golang.org/x/sys/unix/linux/mksysnum.pl diff --git a/fn/vendor/golang.org/x/sys/unix/linux/types.go b/cli/vendor/golang.org/x/sys/unix/linux/types.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/linux/types.go rename to cli/vendor/golang.org/x/sys/unix/linux/types.go diff --git a/fn/vendor/golang.org/x/sys/unix/mkall.sh b/cli/vendor/golang.org/x/sys/unix/mkall.sh similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mkall.sh rename to cli/vendor/golang.org/x/sys/unix/mkall.sh diff --git a/fn/vendor/golang.org/x/sys/unix/mkerrors.sh b/cli/vendor/golang.org/x/sys/unix/mkerrors.sh similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mkerrors.sh rename to cli/vendor/golang.org/x/sys/unix/mkerrors.sh diff --git a/fn/vendor/golang.org/x/sys/unix/mkpost.go b/cli/vendor/golang.org/x/sys/unix/mkpost.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mkpost.go rename to cli/vendor/golang.org/x/sys/unix/mkpost.go diff --git a/fn/vendor/golang.org/x/sys/unix/mksyscall.pl b/cli/vendor/golang.org/x/sys/unix/mksyscall.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksyscall.pl rename to cli/vendor/golang.org/x/sys/unix/mksyscall.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl b/cli/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl rename to cli/vendor/golang.org/x/sys/unix/mksyscall_solaris.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl b/cli/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl rename to cli/vendor/golang.org/x/sys/unix/mksysctl_openbsd.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl b/cli/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl rename to cli/vendor/golang.org/x/sys/unix/mksysnum_darwin.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl b/cli/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl rename to cli/vendor/golang.org/x/sys/unix/mksysnum_dragonfly.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl b/cli/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl rename to cli/vendor/golang.org/x/sys/unix/mksysnum_freebsd.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl b/cli/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl rename to cli/vendor/golang.org/x/sys/unix/mksysnum_netbsd.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl b/cli/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl rename to cli/vendor/golang.org/x/sys/unix/mksysnum_openbsd.pl diff --git a/fn/vendor/golang.org/x/sys/unix/mmap_unix_test.go b/cli/vendor/golang.org/x/sys/unix/mmap_unix_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/mmap_unix_test.go rename to cli/vendor/golang.org/x/sys/unix/mmap_unix_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/openbsd_pledge.go b/cli/vendor/golang.org/x/sys/unix/openbsd_pledge.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/openbsd_pledge.go rename to cli/vendor/golang.org/x/sys/unix/openbsd_pledge.go diff --git a/fn/vendor/golang.org/x/sys/unix/openbsd_test.go b/cli/vendor/golang.org/x/sys/unix/openbsd_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/openbsd_test.go rename to cli/vendor/golang.org/x/sys/unix/openbsd_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/race.go b/cli/vendor/golang.org/x/sys/unix/race.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/race.go rename to cli/vendor/golang.org/x/sys/unix/race.go diff --git a/fn/vendor/golang.org/x/sys/unix/race0.go b/cli/vendor/golang.org/x/sys/unix/race0.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/race0.go rename to cli/vendor/golang.org/x/sys/unix/race0.go diff --git a/fn/vendor/golang.org/x/sys/unix/sockcmsg_linux.go b/cli/vendor/golang.org/x/sys/unix/sockcmsg_linux.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/sockcmsg_linux.go rename to cli/vendor/golang.org/x/sys/unix/sockcmsg_linux.go diff --git a/fn/vendor/golang.org/x/sys/unix/sockcmsg_unix.go b/cli/vendor/golang.org/x/sys/unix/sockcmsg_unix.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/sockcmsg_unix.go rename to cli/vendor/golang.org/x/sys/unix/sockcmsg_unix.go diff --git a/fn/vendor/golang.org/x/sys/unix/str.go b/cli/vendor/golang.org/x/sys/unix/str.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/str.go rename to cli/vendor/golang.org/x/sys/unix/str.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall.go b/cli/vendor/golang.org/x/sys/unix/syscall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall.go rename to cli/vendor/golang.org/x/sys/unix/syscall.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_bsd.go b/cli/vendor/golang.org/x/sys/unix/syscall_bsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_bsd.go rename to cli/vendor/golang.org/x/sys/unix/syscall_bsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_bsd_test.go b/cli/vendor/golang.org/x/sys/unix/syscall_bsd_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_bsd_test.go rename to cli/vendor/golang.org/x/sys/unix/syscall_bsd_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_darwin.go b/cli/vendor/golang.org/x/sys/unix/syscall_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_darwin.go rename to cli/vendor/golang.org/x/sys/unix/syscall_darwin.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_darwin_386.go b/cli/vendor/golang.org/x/sys/unix/syscall_darwin_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_darwin_386.go rename to cli/vendor/golang.org/x/sys/unix/syscall_darwin_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go b/cli/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go rename to cli/vendor/golang.org/x/sys/unix/syscall_darwin_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go b/cli/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_dragonfly.go b/cli/vendor/golang.org/x/sys/unix/syscall_dragonfly.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_dragonfly.go rename to cli/vendor/golang.org/x/sys/unix/syscall_dragonfly.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_freebsd.go b/cli/vendor/golang.org/x/sys/unix/syscall_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_freebsd.go rename to cli/vendor/golang.org/x/sys/unix/syscall_freebsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go b/cli/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go rename to cli/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go b/cli/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_freebsd_test.go b/cli/vendor/golang.org/x/sys/unix/syscall_freebsd_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_freebsd_test.go rename to cli/vendor/golang.org/x/sys/unix/syscall_freebsd_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_386.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_386.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_arm.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_arm.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_linux_test.go b/cli/vendor/golang.org/x/sys/unix/syscall_linux_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_linux_test.go rename to cli/vendor/golang.org/x/sys/unix/syscall_linux_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_netbsd.go b/cli/vendor/golang.org/x/sys/unix/syscall_netbsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_netbsd.go rename to cli/vendor/golang.org/x/sys/unix/syscall_netbsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go b/cli/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go b/cli/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_no_getwd.go b/cli/vendor/golang.org/x/sys/unix/syscall_no_getwd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_no_getwd.go rename to cli/vendor/golang.org/x/sys/unix/syscall_no_getwd.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_openbsd.go b/cli/vendor/golang.org/x/sys/unix/syscall_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_openbsd.go rename to cli/vendor/golang.org/x/sys/unix/syscall_openbsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go b/cli/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_solaris.go b/cli/vendor/golang.org/x/sys/unix/syscall_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_solaris.go rename to cli/vendor/golang.org/x/sys/unix/syscall_solaris.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go b/cli/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go rename to cli/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_solaris_test.go b/cli/vendor/golang.org/x/sys/unix/syscall_solaris_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_solaris_test.go rename to cli/vendor/golang.org/x/sys/unix/syscall_solaris_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_test.go b/cli/vendor/golang.org/x/sys/unix/syscall_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_test.go rename to cli/vendor/golang.org/x/sys/unix/syscall_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_unix.go b/cli/vendor/golang.org/x/sys/unix/syscall_unix.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_unix.go rename to cli/vendor/golang.org/x/sys/unix/syscall_unix.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_unix_gc.go b/cli/vendor/golang.org/x/sys/unix/syscall_unix_gc.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_unix_gc.go rename to cli/vendor/golang.org/x/sys/unix/syscall_unix_gc.go diff --git a/fn/vendor/golang.org/x/sys/unix/syscall_unix_test.go b/cli/vendor/golang.org/x/sys/unix/syscall_unix_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/syscall_unix_test.go rename to cli/vendor/golang.org/x/sys/unix/syscall_unix_test.go diff --git a/fn/vendor/golang.org/x/sys/unix/types_darwin.go b/cli/vendor/golang.org/x/sys/unix/types_darwin.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/types_darwin.go rename to cli/vendor/golang.org/x/sys/unix/types_darwin.go diff --git a/fn/vendor/golang.org/x/sys/unix/types_dragonfly.go b/cli/vendor/golang.org/x/sys/unix/types_dragonfly.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/types_dragonfly.go rename to cli/vendor/golang.org/x/sys/unix/types_dragonfly.go diff --git a/fn/vendor/golang.org/x/sys/unix/types_freebsd.go b/cli/vendor/golang.org/x/sys/unix/types_freebsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/types_freebsd.go rename to cli/vendor/golang.org/x/sys/unix/types_freebsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/types_netbsd.go b/cli/vendor/golang.org/x/sys/unix/types_netbsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/types_netbsd.go rename to cli/vendor/golang.org/x/sys/unix/types_netbsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/types_openbsd.go b/cli/vendor/golang.org/x/sys/unix/types_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/types_openbsd.go rename to cli/vendor/golang.org/x/sys/unix/types_openbsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/types_solaris.go b/cli/vendor/golang.org/x/sys/unix/types_solaris.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/types_solaris.go rename to cli/vendor/golang.org/x/sys/unix/types_solaris.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go b/cli/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_darwin_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go b/cli/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go b/cli/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go b/cli/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_386.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_386.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go b/cli/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go b/cli/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go b/cli/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go b/cli/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go b/cli/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go rename to cli/vendor/golang.org/x/sys/unix/zsysctl_openbsd.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go b/cli/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go rename to cli/vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go b/cli/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go b/cli/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go b/cli/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go b/cli/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_386.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_386.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go b/cli/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go b/cli/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go b/cli/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go diff --git a/fn/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go b/cli/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go rename to cli/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go diff --git a/fn/vendor/golang.org/x/sys/windows/asm_windows_386.s b/cli/vendor/golang.org/x/sys/windows/asm_windows_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/asm_windows_386.s rename to cli/vendor/golang.org/x/sys/windows/asm_windows_386.s diff --git a/fn/vendor/golang.org/x/sys/windows/asm_windows_amd64.s b/cli/vendor/golang.org/x/sys/windows/asm_windows_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/asm_windows_amd64.s rename to cli/vendor/golang.org/x/sys/windows/asm_windows_amd64.s diff --git a/fn/vendor/golang.org/x/sys/windows/dll_windows.go b/cli/vendor/golang.org/x/sys/windows/dll_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/dll_windows.go rename to cli/vendor/golang.org/x/sys/windows/dll_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/env_unset.go b/cli/vendor/golang.org/x/sys/windows/env_unset.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/env_unset.go rename to cli/vendor/golang.org/x/sys/windows/env_unset.go diff --git a/fn/vendor/golang.org/x/sys/windows/env_windows.go b/cli/vendor/golang.org/x/sys/windows/env_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/env_windows.go rename to cli/vendor/golang.org/x/sys/windows/env_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/eventlog.go b/cli/vendor/golang.org/x/sys/windows/eventlog.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/eventlog.go rename to cli/vendor/golang.org/x/sys/windows/eventlog.go diff --git a/fn/vendor/golang.org/x/sys/windows/exec_windows.go b/cli/vendor/golang.org/x/sys/windows/exec_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/exec_windows.go rename to cli/vendor/golang.org/x/sys/windows/exec_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/mksyscall.go b/cli/vendor/golang.org/x/sys/windows/mksyscall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/mksyscall.go rename to cli/vendor/golang.org/x/sys/windows/mksyscall.go diff --git a/fn/vendor/golang.org/x/sys/windows/race.go b/cli/vendor/golang.org/x/sys/windows/race.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/race.go rename to cli/vendor/golang.org/x/sys/windows/race.go diff --git a/fn/vendor/golang.org/x/sys/windows/race0.go b/cli/vendor/golang.org/x/sys/windows/race0.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/race0.go rename to cli/vendor/golang.org/x/sys/windows/race0.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/export_test.go b/cli/vendor/golang.org/x/sys/windows/registry/export_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/export_test.go rename to cli/vendor/golang.org/x/sys/windows/registry/export_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/key.go b/cli/vendor/golang.org/x/sys/windows/registry/key.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/key.go rename to cli/vendor/golang.org/x/sys/windows/registry/key.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/mksyscall.go b/cli/vendor/golang.org/x/sys/windows/registry/mksyscall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/mksyscall.go rename to cli/vendor/golang.org/x/sys/windows/registry/mksyscall.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/registry_test.go b/cli/vendor/golang.org/x/sys/windows/registry/registry_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/registry_test.go rename to cli/vendor/golang.org/x/sys/windows/registry/registry_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/syscall.go b/cli/vendor/golang.org/x/sys/windows/registry/syscall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/syscall.go rename to cli/vendor/golang.org/x/sys/windows/registry/syscall.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/value.go b/cli/vendor/golang.org/x/sys/windows/registry/value.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/value.go rename to cli/vendor/golang.org/x/sys/windows/registry/value.go diff --git a/fn/vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go b/cli/vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go rename to cli/vendor/golang.org/x/sys/windows/registry/zsyscall_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/security_windows.go b/cli/vendor/golang.org/x/sys/windows/security_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/security_windows.go rename to cli/vendor/golang.org/x/sys/windows/security_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/service.go b/cli/vendor/golang.org/x/sys/windows/service.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/service.go rename to cli/vendor/golang.org/x/sys/windows/service.go diff --git a/fn/vendor/golang.org/x/sys/windows/str.go b/cli/vendor/golang.org/x/sys/windows/str.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/str.go rename to cli/vendor/golang.org/x/sys/windows/str.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/debug/log.go b/cli/vendor/golang.org/x/sys/windows/svc/debug/log.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/debug/log.go rename to cli/vendor/golang.org/x/sys/windows/svc/debug/log.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/debug/service.go b/cli/vendor/golang.org/x/sys/windows/svc/debug/service.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/debug/service.go rename to cli/vendor/golang.org/x/sys/windows/svc/debug/service.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/event.go b/cli/vendor/golang.org/x/sys/windows/svc/event.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/event.go rename to cli/vendor/golang.org/x/sys/windows/svc/event.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/eventlog/install.go b/cli/vendor/golang.org/x/sys/windows/svc/eventlog/install.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/eventlog/install.go rename to cli/vendor/golang.org/x/sys/windows/svc/eventlog/install.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/eventlog/log.go b/cli/vendor/golang.org/x/sys/windows/svc/eventlog/log.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/eventlog/log.go rename to cli/vendor/golang.org/x/sys/windows/svc/eventlog/log.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/eventlog/log_test.go b/cli/vendor/golang.org/x/sys/windows/svc/eventlog/log_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/eventlog/log_test.go rename to cli/vendor/golang.org/x/sys/windows/svc/eventlog/log_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/example/beep.go b/cli/vendor/golang.org/x/sys/windows/svc/example/beep.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/example/beep.go rename to cli/vendor/golang.org/x/sys/windows/svc/example/beep.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/example/install.go b/cli/vendor/golang.org/x/sys/windows/svc/example/install.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/example/install.go rename to cli/vendor/golang.org/x/sys/windows/svc/example/install.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/example/main.go b/cli/vendor/golang.org/x/sys/windows/svc/example/main.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/example/main.go rename to cli/vendor/golang.org/x/sys/windows/svc/example/main.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/example/manage.go b/cli/vendor/golang.org/x/sys/windows/svc/example/manage.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/example/manage.go rename to cli/vendor/golang.org/x/sys/windows/svc/example/manage.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/example/service.go b/cli/vendor/golang.org/x/sys/windows/svc/example/service.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/example/service.go rename to cli/vendor/golang.org/x/sys/windows/svc/example/service.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/go12.c b/cli/vendor/golang.org/x/sys/windows/svc/go12.c similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/go12.c rename to cli/vendor/golang.org/x/sys/windows/svc/go12.c diff --git a/fn/vendor/golang.org/x/sys/windows/svc/go12.go b/cli/vendor/golang.org/x/sys/windows/svc/go12.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/go12.go rename to cli/vendor/golang.org/x/sys/windows/svc/go12.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/go13.go b/cli/vendor/golang.org/x/sys/windows/svc/go13.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/go13.go rename to cli/vendor/golang.org/x/sys/windows/svc/go13.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/mgr/config.go b/cli/vendor/golang.org/x/sys/windows/svc/mgr/config.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/mgr/config.go rename to cli/vendor/golang.org/x/sys/windows/svc/mgr/config.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go b/cli/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go rename to cli/vendor/golang.org/x/sys/windows/svc/mgr/mgr.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/mgr/mgr_test.go b/cli/vendor/golang.org/x/sys/windows/svc/mgr/mgr_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/mgr/mgr_test.go rename to cli/vendor/golang.org/x/sys/windows/svc/mgr/mgr_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/mgr/service.go b/cli/vendor/golang.org/x/sys/windows/svc/mgr/service.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/mgr/service.go rename to cli/vendor/golang.org/x/sys/windows/svc/mgr/service.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/security.go b/cli/vendor/golang.org/x/sys/windows/svc/security.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/security.go rename to cli/vendor/golang.org/x/sys/windows/svc/security.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/service.go b/cli/vendor/golang.org/x/sys/windows/svc/service.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/service.go rename to cli/vendor/golang.org/x/sys/windows/svc/service.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/svc_test.go b/cli/vendor/golang.org/x/sys/windows/svc/svc_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/svc_test.go rename to cli/vendor/golang.org/x/sys/windows/svc/svc_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/svc/sys_386.s b/cli/vendor/golang.org/x/sys/windows/svc/sys_386.s similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/sys_386.s rename to cli/vendor/golang.org/x/sys/windows/svc/sys_386.s diff --git a/fn/vendor/golang.org/x/sys/windows/svc/sys_amd64.s b/cli/vendor/golang.org/x/sys/windows/svc/sys_amd64.s similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/svc/sys_amd64.s rename to cli/vendor/golang.org/x/sys/windows/svc/sys_amd64.s diff --git a/fn/vendor/golang.org/x/sys/windows/syscall.go b/cli/vendor/golang.org/x/sys/windows/syscall.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/syscall.go rename to cli/vendor/golang.org/x/sys/windows/syscall.go diff --git a/fn/vendor/golang.org/x/sys/windows/syscall_test.go b/cli/vendor/golang.org/x/sys/windows/syscall_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/syscall_test.go rename to cli/vendor/golang.org/x/sys/windows/syscall_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/syscall_windows.go b/cli/vendor/golang.org/x/sys/windows/syscall_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/syscall_windows.go rename to cli/vendor/golang.org/x/sys/windows/syscall_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/syscall_windows_test.go b/cli/vendor/golang.org/x/sys/windows/syscall_windows_test.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/syscall_windows_test.go rename to cli/vendor/golang.org/x/sys/windows/syscall_windows_test.go diff --git a/fn/vendor/golang.org/x/sys/windows/zsyscall_windows.go b/cli/vendor/golang.org/x/sys/windows/zsyscall_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/zsyscall_windows.go rename to cli/vendor/golang.org/x/sys/windows/zsyscall_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/ztypes_windows.go b/cli/vendor/golang.org/x/sys/windows/ztypes_windows.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/ztypes_windows.go rename to cli/vendor/golang.org/x/sys/windows/ztypes_windows.go diff --git a/fn/vendor/golang.org/x/sys/windows/ztypes_windows_386.go b/cli/vendor/golang.org/x/sys/windows/ztypes_windows_386.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/ztypes_windows_386.go rename to cli/vendor/golang.org/x/sys/windows/ztypes_windows_386.go diff --git a/fn/vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go b/cli/vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go similarity index 100% rename from fn/vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go rename to cli/vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go diff --git a/fn/vendor/golang.org/x/text/.gitattributes b/cli/vendor/golang.org/x/text/.gitattributes similarity index 100% rename from fn/vendor/golang.org/x/text/.gitattributes rename to cli/vendor/golang.org/x/text/.gitattributes diff --git a/fn/vendor/golang.org/x/text/.gitignore b/cli/vendor/golang.org/x/text/.gitignore similarity index 100% rename from fn/vendor/golang.org/x/text/.gitignore rename to cli/vendor/golang.org/x/text/.gitignore diff --git a/fn/vendor/golang.org/x/text/AUTHORS b/cli/vendor/golang.org/x/text/AUTHORS similarity index 100% rename from fn/vendor/golang.org/x/text/AUTHORS rename to cli/vendor/golang.org/x/text/AUTHORS diff --git a/fn/vendor/golang.org/x/text/CONTRIBUTING.md b/cli/vendor/golang.org/x/text/CONTRIBUTING.md similarity index 100% rename from fn/vendor/golang.org/x/text/CONTRIBUTING.md rename to cli/vendor/golang.org/x/text/CONTRIBUTING.md diff --git a/fn/vendor/golang.org/x/text/CONTRIBUTORS b/cli/vendor/golang.org/x/text/CONTRIBUTORS similarity index 100% rename from fn/vendor/golang.org/x/text/CONTRIBUTORS rename to cli/vendor/golang.org/x/text/CONTRIBUTORS diff --git a/fn/vendor/golang.org/x/text/LICENSE b/cli/vendor/golang.org/x/text/LICENSE similarity index 100% rename from fn/vendor/golang.org/x/text/LICENSE rename to cli/vendor/golang.org/x/text/LICENSE diff --git a/fn/vendor/golang.org/x/text/PATENTS b/cli/vendor/golang.org/x/text/PATENTS similarity index 100% rename from fn/vendor/golang.org/x/text/PATENTS rename to cli/vendor/golang.org/x/text/PATENTS diff --git a/fn/vendor/golang.org/x/text/README b/cli/vendor/golang.org/x/text/README similarity index 100% rename from fn/vendor/golang.org/x/text/README rename to cli/vendor/golang.org/x/text/README diff --git a/fn/vendor/golang.org/x/text/cases/cases.go b/cli/vendor/golang.org/x/text/cases/cases.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/cases.go rename to cli/vendor/golang.org/x/text/cases/cases.go diff --git a/fn/vendor/golang.org/x/text/cases/context.go b/cli/vendor/golang.org/x/text/cases/context.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/context.go rename to cli/vendor/golang.org/x/text/cases/context.go diff --git a/fn/vendor/golang.org/x/text/cases/context_test.go b/cli/vendor/golang.org/x/text/cases/context_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/context_test.go rename to cli/vendor/golang.org/x/text/cases/context_test.go diff --git a/fn/vendor/golang.org/x/text/cases/example_test.go b/cli/vendor/golang.org/x/text/cases/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/example_test.go rename to cli/vendor/golang.org/x/text/cases/example_test.go diff --git a/fn/vendor/golang.org/x/text/cases/fold.go b/cli/vendor/golang.org/x/text/cases/fold.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/fold.go rename to cli/vendor/golang.org/x/text/cases/fold.go diff --git a/fn/vendor/golang.org/x/text/cases/fold_test.go b/cli/vendor/golang.org/x/text/cases/fold_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/fold_test.go rename to cli/vendor/golang.org/x/text/cases/fold_test.go diff --git a/fn/vendor/golang.org/x/text/cases/gen.go b/cli/vendor/golang.org/x/text/cases/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/gen.go rename to cli/vendor/golang.org/x/text/cases/gen.go diff --git a/fn/vendor/golang.org/x/text/cases/gen_trieval.go b/cli/vendor/golang.org/x/text/cases/gen_trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/gen_trieval.go rename to cli/vendor/golang.org/x/text/cases/gen_trieval.go diff --git a/fn/vendor/golang.org/x/text/cases/icu.go b/cli/vendor/golang.org/x/text/cases/icu.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/icu.go rename to cli/vendor/golang.org/x/text/cases/icu.go diff --git a/fn/vendor/golang.org/x/text/cases/icu_test.go b/cli/vendor/golang.org/x/text/cases/icu_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/icu_test.go rename to cli/vendor/golang.org/x/text/cases/icu_test.go diff --git a/fn/vendor/golang.org/x/text/cases/info.go b/cli/vendor/golang.org/x/text/cases/info.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/info.go rename to cli/vendor/golang.org/x/text/cases/info.go diff --git a/fn/vendor/golang.org/x/text/cases/map.go b/cli/vendor/golang.org/x/text/cases/map.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/map.go rename to cli/vendor/golang.org/x/text/cases/map.go diff --git a/fn/vendor/golang.org/x/text/cases/map_test.go b/cli/vendor/golang.org/x/text/cases/map_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/map_test.go rename to cli/vendor/golang.org/x/text/cases/map_test.go diff --git a/fn/vendor/golang.org/x/text/cases/tables.go b/cli/vendor/golang.org/x/text/cases/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/tables.go rename to cli/vendor/golang.org/x/text/cases/tables.go diff --git a/fn/vendor/golang.org/x/text/cases/tables_test.go b/cli/vendor/golang.org/x/text/cases/tables_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/tables_test.go rename to cli/vendor/golang.org/x/text/cases/tables_test.go diff --git a/fn/vendor/golang.org/x/text/cases/trieval.go b/cli/vendor/golang.org/x/text/cases/trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/cases/trieval.go rename to cli/vendor/golang.org/x/text/cases/trieval.go diff --git a/fn/vendor/golang.org/x/text/cmd/gotext/doc.go b/cli/vendor/golang.org/x/text/cmd/gotext/doc.go similarity index 100% rename from fn/vendor/golang.org/x/text/cmd/gotext/doc.go rename to cli/vendor/golang.org/x/text/cmd/gotext/doc.go diff --git a/fn/vendor/golang.org/x/text/cmd/gotext/extract.go b/cli/vendor/golang.org/x/text/cmd/gotext/extract.go similarity index 100% rename from fn/vendor/golang.org/x/text/cmd/gotext/extract.go rename to cli/vendor/golang.org/x/text/cmd/gotext/extract.go diff --git a/fn/vendor/golang.org/x/text/cmd/gotext/main.go b/cli/vendor/golang.org/x/text/cmd/gotext/main.go similarity index 100% rename from fn/vendor/golang.org/x/text/cmd/gotext/main.go rename to cli/vendor/golang.org/x/text/cmd/gotext/main.go diff --git a/fn/vendor/golang.org/x/text/cmd/gotext/message.go b/cli/vendor/golang.org/x/text/cmd/gotext/message.go similarity index 100% rename from fn/vendor/golang.org/x/text/cmd/gotext/message.go rename to cli/vendor/golang.org/x/text/cmd/gotext/message.go diff --git a/fn/vendor/golang.org/x/text/codereview.cfg b/cli/vendor/golang.org/x/text/codereview.cfg similarity index 100% rename from fn/vendor/golang.org/x/text/codereview.cfg rename to cli/vendor/golang.org/x/text/codereview.cfg diff --git a/fn/vendor/golang.org/x/text/collate/build/builder.go b/cli/vendor/golang.org/x/text/collate/build/builder.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/builder.go rename to cli/vendor/golang.org/x/text/collate/build/builder.go diff --git a/fn/vendor/golang.org/x/text/collate/build/builder_test.go b/cli/vendor/golang.org/x/text/collate/build/builder_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/builder_test.go rename to cli/vendor/golang.org/x/text/collate/build/builder_test.go diff --git a/fn/vendor/golang.org/x/text/collate/build/colelem.go b/cli/vendor/golang.org/x/text/collate/build/colelem.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/colelem.go rename to cli/vendor/golang.org/x/text/collate/build/colelem.go diff --git a/fn/vendor/golang.org/x/text/collate/build/colelem_test.go b/cli/vendor/golang.org/x/text/collate/build/colelem_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/colelem_test.go rename to cli/vendor/golang.org/x/text/collate/build/colelem_test.go diff --git a/fn/vendor/golang.org/x/text/collate/build/contract.go b/cli/vendor/golang.org/x/text/collate/build/contract.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/contract.go rename to cli/vendor/golang.org/x/text/collate/build/contract.go diff --git a/fn/vendor/golang.org/x/text/collate/build/contract_test.go b/cli/vendor/golang.org/x/text/collate/build/contract_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/contract_test.go rename to cli/vendor/golang.org/x/text/collate/build/contract_test.go diff --git a/fn/vendor/golang.org/x/text/collate/build/order.go b/cli/vendor/golang.org/x/text/collate/build/order.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/order.go rename to cli/vendor/golang.org/x/text/collate/build/order.go diff --git a/fn/vendor/golang.org/x/text/collate/build/order_test.go b/cli/vendor/golang.org/x/text/collate/build/order_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/order_test.go rename to cli/vendor/golang.org/x/text/collate/build/order_test.go diff --git a/fn/vendor/golang.org/x/text/collate/build/table.go b/cli/vendor/golang.org/x/text/collate/build/table.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/table.go rename to cli/vendor/golang.org/x/text/collate/build/table.go diff --git a/fn/vendor/golang.org/x/text/collate/build/trie.go b/cli/vendor/golang.org/x/text/collate/build/trie.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/trie.go rename to cli/vendor/golang.org/x/text/collate/build/trie.go diff --git a/fn/vendor/golang.org/x/text/collate/build/trie_test.go b/cli/vendor/golang.org/x/text/collate/build/trie_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/build/trie_test.go rename to cli/vendor/golang.org/x/text/collate/build/trie_test.go diff --git a/fn/vendor/golang.org/x/text/collate/collate.go b/cli/vendor/golang.org/x/text/collate/collate.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/collate.go rename to cli/vendor/golang.org/x/text/collate/collate.go diff --git a/fn/vendor/golang.org/x/text/collate/collate_test.go b/cli/vendor/golang.org/x/text/collate/collate_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/collate_test.go rename to cli/vendor/golang.org/x/text/collate/collate_test.go diff --git a/fn/vendor/golang.org/x/text/collate/export_test.go b/cli/vendor/golang.org/x/text/collate/export_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/export_test.go rename to cli/vendor/golang.org/x/text/collate/export_test.go diff --git a/fn/vendor/golang.org/x/text/collate/index.go b/cli/vendor/golang.org/x/text/collate/index.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/index.go rename to cli/vendor/golang.org/x/text/collate/index.go diff --git a/fn/vendor/golang.org/x/text/collate/maketables.go b/cli/vendor/golang.org/x/text/collate/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/maketables.go rename to cli/vendor/golang.org/x/text/collate/maketables.go diff --git a/fn/vendor/golang.org/x/text/collate/option.go b/cli/vendor/golang.org/x/text/collate/option.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/option.go rename to cli/vendor/golang.org/x/text/collate/option.go diff --git a/fn/vendor/golang.org/x/text/collate/option_test.go b/cli/vendor/golang.org/x/text/collate/option_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/option_test.go rename to cli/vendor/golang.org/x/text/collate/option_test.go diff --git a/fn/vendor/golang.org/x/text/collate/reg_test.go b/cli/vendor/golang.org/x/text/collate/reg_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/reg_test.go rename to cli/vendor/golang.org/x/text/collate/reg_test.go diff --git a/fn/vendor/golang.org/x/text/collate/sort.go b/cli/vendor/golang.org/x/text/collate/sort.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/sort.go rename to cli/vendor/golang.org/x/text/collate/sort.go diff --git a/fn/vendor/golang.org/x/text/collate/sort_test.go b/cli/vendor/golang.org/x/text/collate/sort_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/sort_test.go rename to cli/vendor/golang.org/x/text/collate/sort_test.go diff --git a/fn/vendor/golang.org/x/text/collate/table_test.go b/cli/vendor/golang.org/x/text/collate/table_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/table_test.go rename to cli/vendor/golang.org/x/text/collate/table_test.go diff --git a/fn/vendor/golang.org/x/text/collate/tables.go b/cli/vendor/golang.org/x/text/collate/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tables.go rename to cli/vendor/golang.org/x/text/collate/tables.go diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/Makefile b/cli/vendor/golang.org/x/text/collate/tools/colcmp/Makefile similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/Makefile rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/Makefile diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/chars.go b/cli/vendor/golang.org/x/text/collate/tools/colcmp/chars.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/chars.go rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/chars.go diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/col.go b/cli/vendor/golang.org/x/text/collate/tools/colcmp/col.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/col.go rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/col.go diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/colcmp.go b/cli/vendor/golang.org/x/text/collate/tools/colcmp/colcmp.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/colcmp.go rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/colcmp.go diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/darwin.go b/cli/vendor/golang.org/x/text/collate/tools/colcmp/darwin.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/darwin.go rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/darwin.go diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/gen.go b/cli/vendor/golang.org/x/text/collate/tools/colcmp/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/gen.go rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/gen.go diff --git a/fn/vendor/golang.org/x/text/collate/tools/colcmp/icu.go b/cli/vendor/golang.org/x/text/collate/tools/colcmp/icu.go similarity index 100% rename from fn/vendor/golang.org/x/text/collate/tools/colcmp/icu.go rename to cli/vendor/golang.org/x/text/collate/tools/colcmp/icu.go diff --git a/fn/vendor/golang.org/x/text/currency/common.go b/cli/vendor/golang.org/x/text/currency/common.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/common.go rename to cli/vendor/golang.org/x/text/currency/common.go diff --git a/fn/vendor/golang.org/x/text/currency/currency.go b/cli/vendor/golang.org/x/text/currency/currency.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/currency.go rename to cli/vendor/golang.org/x/text/currency/currency.go diff --git a/fn/vendor/golang.org/x/text/currency/currency_test.go b/cli/vendor/golang.org/x/text/currency/currency_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/currency_test.go rename to cli/vendor/golang.org/x/text/currency/currency_test.go diff --git a/fn/vendor/golang.org/x/text/currency/example_test.go b/cli/vendor/golang.org/x/text/currency/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/example_test.go rename to cli/vendor/golang.org/x/text/currency/example_test.go diff --git a/fn/vendor/golang.org/x/text/currency/format.go b/cli/vendor/golang.org/x/text/currency/format.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/format.go rename to cli/vendor/golang.org/x/text/currency/format.go diff --git a/fn/vendor/golang.org/x/text/currency/format_test.go b/cli/vendor/golang.org/x/text/currency/format_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/format_test.go rename to cli/vendor/golang.org/x/text/currency/format_test.go diff --git a/fn/vendor/golang.org/x/text/currency/gen.go b/cli/vendor/golang.org/x/text/currency/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/gen.go rename to cli/vendor/golang.org/x/text/currency/gen.go diff --git a/fn/vendor/golang.org/x/text/currency/gen_common.go b/cli/vendor/golang.org/x/text/currency/gen_common.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/gen_common.go rename to cli/vendor/golang.org/x/text/currency/gen_common.go diff --git a/fn/vendor/golang.org/x/text/currency/query.go b/cli/vendor/golang.org/x/text/currency/query.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/query.go rename to cli/vendor/golang.org/x/text/currency/query.go diff --git a/fn/vendor/golang.org/x/text/currency/query_test.go b/cli/vendor/golang.org/x/text/currency/query_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/query_test.go rename to cli/vendor/golang.org/x/text/currency/query_test.go diff --git a/fn/vendor/golang.org/x/text/currency/tables.go b/cli/vendor/golang.org/x/text/currency/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/tables.go rename to cli/vendor/golang.org/x/text/currency/tables.go diff --git a/fn/vendor/golang.org/x/text/currency/tables_test.go b/cli/vendor/golang.org/x/text/currency/tables_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/currency/tables_test.go rename to cli/vendor/golang.org/x/text/currency/tables_test.go diff --git a/fn/vendor/golang.org/x/text/doc.go b/cli/vendor/golang.org/x/text/doc.go similarity index 100% rename from fn/vendor/golang.org/x/text/doc.go rename to cli/vendor/golang.org/x/text/doc.go diff --git a/fn/vendor/golang.org/x/text/encoding/charmap/charmap.go b/cli/vendor/golang.org/x/text/encoding/charmap/charmap.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/charmap/charmap.go rename to cli/vendor/golang.org/x/text/encoding/charmap/charmap.go diff --git a/fn/vendor/golang.org/x/text/encoding/charmap/charmap_test.go b/cli/vendor/golang.org/x/text/encoding/charmap/charmap_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/charmap/charmap_test.go rename to cli/vendor/golang.org/x/text/encoding/charmap/charmap_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/charmap/maketables.go b/cli/vendor/golang.org/x/text/encoding/charmap/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/charmap/maketables.go rename to cli/vendor/golang.org/x/text/encoding/charmap/maketables.go diff --git a/fn/vendor/golang.org/x/text/encoding/charmap/tables.go b/cli/vendor/golang.org/x/text/encoding/charmap/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/charmap/tables.go rename to cli/vendor/golang.org/x/text/encoding/charmap/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/encoding.go b/cli/vendor/golang.org/x/text/encoding/encoding.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/encoding.go rename to cli/vendor/golang.org/x/text/encoding/encoding.go diff --git a/fn/vendor/golang.org/x/text/encoding/encoding_test.go b/cli/vendor/golang.org/x/text/encoding/encoding_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/encoding_test.go rename to cli/vendor/golang.org/x/text/encoding/encoding_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/example_test.go b/cli/vendor/golang.org/x/text/encoding/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/example_test.go rename to cli/vendor/golang.org/x/text/encoding/example_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/htmlindex/gen.go b/cli/vendor/golang.org/x/text/encoding/htmlindex/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/htmlindex/gen.go rename to cli/vendor/golang.org/x/text/encoding/htmlindex/gen.go diff --git a/fn/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go b/cli/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go rename to cli/vendor/golang.org/x/text/encoding/htmlindex/htmlindex.go diff --git a/fn/vendor/golang.org/x/text/encoding/htmlindex/htmlindex_test.go b/cli/vendor/golang.org/x/text/encoding/htmlindex/htmlindex_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/htmlindex/htmlindex_test.go rename to cli/vendor/golang.org/x/text/encoding/htmlindex/htmlindex_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/htmlindex/map.go b/cli/vendor/golang.org/x/text/encoding/htmlindex/map.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/htmlindex/map.go rename to cli/vendor/golang.org/x/text/encoding/htmlindex/map.go diff --git a/fn/vendor/golang.org/x/text/encoding/htmlindex/tables.go b/cli/vendor/golang.org/x/text/encoding/htmlindex/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/htmlindex/tables.go rename to cli/vendor/golang.org/x/text/encoding/htmlindex/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/ianaindex/example_test.go b/cli/vendor/golang.org/x/text/encoding/ianaindex/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/ianaindex/example_test.go rename to cli/vendor/golang.org/x/text/encoding/ianaindex/example_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/ianaindex/gen.go b/cli/vendor/golang.org/x/text/encoding/ianaindex/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/ianaindex/gen.go rename to cli/vendor/golang.org/x/text/encoding/ianaindex/gen.go diff --git a/fn/vendor/golang.org/x/text/encoding/ianaindex/ianaindex.go b/cli/vendor/golang.org/x/text/encoding/ianaindex/ianaindex.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/ianaindex/ianaindex.go rename to cli/vendor/golang.org/x/text/encoding/ianaindex/ianaindex.go diff --git a/fn/vendor/golang.org/x/text/encoding/ianaindex/ianaindex_test.go b/cli/vendor/golang.org/x/text/encoding/ianaindex/ianaindex_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/ianaindex/ianaindex_test.go rename to cli/vendor/golang.org/x/text/encoding/ianaindex/ianaindex_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/ianaindex/tables.go b/cli/vendor/golang.org/x/text/encoding/ianaindex/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/ianaindex/tables.go rename to cli/vendor/golang.org/x/text/encoding/ianaindex/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/internal/enctest/enctest.go b/cli/vendor/golang.org/x/text/encoding/internal/enctest/enctest.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/internal/enctest/enctest.go rename to cli/vendor/golang.org/x/text/encoding/internal/enctest/enctest.go diff --git a/fn/vendor/golang.org/x/text/encoding/internal/identifier/gen.go b/cli/vendor/golang.org/x/text/encoding/internal/identifier/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/internal/identifier/gen.go rename to cli/vendor/golang.org/x/text/encoding/internal/identifier/gen.go diff --git a/fn/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go b/cli/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go rename to cli/vendor/golang.org/x/text/encoding/internal/identifier/identifier.go diff --git a/fn/vendor/golang.org/x/text/encoding/internal/identifier/mib.go b/cli/vendor/golang.org/x/text/encoding/internal/identifier/mib.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/internal/identifier/mib.go rename to cli/vendor/golang.org/x/text/encoding/internal/identifier/mib.go diff --git a/fn/vendor/golang.org/x/text/encoding/internal/internal.go b/cli/vendor/golang.org/x/text/encoding/internal/internal.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/internal/internal.go rename to cli/vendor/golang.org/x/text/encoding/internal/internal.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/all.go b/cli/vendor/golang.org/x/text/encoding/japanese/all.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/all.go rename to cli/vendor/golang.org/x/text/encoding/japanese/all.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/all_test.go b/cli/vendor/golang.org/x/text/encoding/japanese/all_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/all_test.go rename to cli/vendor/golang.org/x/text/encoding/japanese/all_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/eucjp.go b/cli/vendor/golang.org/x/text/encoding/japanese/eucjp.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/eucjp.go rename to cli/vendor/golang.org/x/text/encoding/japanese/eucjp.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go b/cli/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go rename to cli/vendor/golang.org/x/text/encoding/japanese/iso2022jp.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/maketables.go b/cli/vendor/golang.org/x/text/encoding/japanese/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/maketables.go rename to cli/vendor/golang.org/x/text/encoding/japanese/maketables.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/shiftjis.go b/cli/vendor/golang.org/x/text/encoding/japanese/shiftjis.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/shiftjis.go rename to cli/vendor/golang.org/x/text/encoding/japanese/shiftjis.go diff --git a/fn/vendor/golang.org/x/text/encoding/japanese/tables.go b/cli/vendor/golang.org/x/text/encoding/japanese/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/japanese/tables.go rename to cli/vendor/golang.org/x/text/encoding/japanese/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/korean/all_test.go b/cli/vendor/golang.org/x/text/encoding/korean/all_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/korean/all_test.go rename to cli/vendor/golang.org/x/text/encoding/korean/all_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/korean/euckr.go b/cli/vendor/golang.org/x/text/encoding/korean/euckr.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/korean/euckr.go rename to cli/vendor/golang.org/x/text/encoding/korean/euckr.go diff --git a/fn/vendor/golang.org/x/text/encoding/korean/maketables.go b/cli/vendor/golang.org/x/text/encoding/korean/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/korean/maketables.go rename to cli/vendor/golang.org/x/text/encoding/korean/maketables.go diff --git a/fn/vendor/golang.org/x/text/encoding/korean/tables.go b/cli/vendor/golang.org/x/text/encoding/korean/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/korean/tables.go rename to cli/vendor/golang.org/x/text/encoding/korean/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go b/cli/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go rename to cli/vendor/golang.org/x/text/encoding/simplifiedchinese/all.go diff --git a/fn/vendor/golang.org/x/text/encoding/simplifiedchinese/all_test.go b/cli/vendor/golang.org/x/text/encoding/simplifiedchinese/all_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/simplifiedchinese/all_test.go rename to cli/vendor/golang.org/x/text/encoding/simplifiedchinese/all_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go b/cli/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go rename to cli/vendor/golang.org/x/text/encoding/simplifiedchinese/gbk.go diff --git a/fn/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go b/cli/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go rename to cli/vendor/golang.org/x/text/encoding/simplifiedchinese/hzgb2312.go diff --git a/fn/vendor/golang.org/x/text/encoding/simplifiedchinese/maketables.go b/cli/vendor/golang.org/x/text/encoding/simplifiedchinese/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/simplifiedchinese/maketables.go rename to cli/vendor/golang.org/x/text/encoding/simplifiedchinese/maketables.go diff --git a/fn/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go b/cli/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go rename to cli/vendor/golang.org/x/text/encoding/simplifiedchinese/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt b/cli/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/candide-gb18030.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt b/cli/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/candide-utf-16le.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt b/cli/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/candide-utf-32be.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/candide-utf-8.txt b/cli/vendor/golang.org/x/text/encoding/testdata/candide-utf-8.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/candide-utf-8.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/candide-utf-8.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt b/cli/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/candide-windows-1252.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt b/cli/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/rashomon-euc-jp.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/rashomon-iso-2022-jp.txt b/cli/vendor/golang.org/x/text/encoding/testdata/rashomon-iso-2022-jp.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/rashomon-iso-2022-jp.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/rashomon-iso-2022-jp.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt b/cli/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/rashomon-shift-jis.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/rashomon-utf-8.txt b/cli/vendor/golang.org/x/text/encoding/testdata/rashomon-utf-8.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/rashomon-utf-8.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/rashomon-utf-8.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt b/cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-hz-gb2312.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-utf-8.txt b/cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-utf-8.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-utf-8.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-gb-levels-1-and-2-utf-8.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt b/cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-gbk.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-utf-8.txt b/cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-utf-8.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-utf-8.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-simplified-utf-8.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt b/cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-big5.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-utf-8.txt b/cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-utf-8.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-utf-8.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/sunzi-bingfa-traditional-utf-8.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt b/cli/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-euc-kr.txt diff --git a/fn/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-utf-8.txt b/cli/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-utf-8.txt similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-utf-8.txt rename to cli/vendor/golang.org/x/text/encoding/testdata/unsu-joh-eun-nal-utf-8.txt diff --git a/fn/vendor/golang.org/x/text/encoding/traditionalchinese/all_test.go b/cli/vendor/golang.org/x/text/encoding/traditionalchinese/all_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/traditionalchinese/all_test.go rename to cli/vendor/golang.org/x/text/encoding/traditionalchinese/all_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go b/cli/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go rename to cli/vendor/golang.org/x/text/encoding/traditionalchinese/big5.go diff --git a/fn/vendor/golang.org/x/text/encoding/traditionalchinese/maketables.go b/cli/vendor/golang.org/x/text/encoding/traditionalchinese/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/traditionalchinese/maketables.go rename to cli/vendor/golang.org/x/text/encoding/traditionalchinese/maketables.go diff --git a/fn/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go b/cli/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go rename to cli/vendor/golang.org/x/text/encoding/traditionalchinese/tables.go diff --git a/fn/vendor/golang.org/x/text/encoding/unicode/override.go b/cli/vendor/golang.org/x/text/encoding/unicode/override.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/unicode/override.go rename to cli/vendor/golang.org/x/text/encoding/unicode/override.go diff --git a/fn/vendor/golang.org/x/text/encoding/unicode/unicode.go b/cli/vendor/golang.org/x/text/encoding/unicode/unicode.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/unicode/unicode.go rename to cli/vendor/golang.org/x/text/encoding/unicode/unicode.go diff --git a/fn/vendor/golang.org/x/text/encoding/unicode/unicode_test.go b/cli/vendor/golang.org/x/text/encoding/unicode/unicode_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/unicode/unicode_test.go rename to cli/vendor/golang.org/x/text/encoding/unicode/unicode_test.go diff --git a/fn/vendor/golang.org/x/text/encoding/unicode/utf32/utf32.go b/cli/vendor/golang.org/x/text/encoding/unicode/utf32/utf32.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/unicode/utf32/utf32.go rename to cli/vendor/golang.org/x/text/encoding/unicode/utf32/utf32.go diff --git a/fn/vendor/golang.org/x/text/encoding/unicode/utf32/utf32_test.go b/cli/vendor/golang.org/x/text/encoding/unicode/utf32/utf32_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/encoding/unicode/utf32/utf32_test.go rename to cli/vendor/golang.org/x/text/encoding/unicode/utf32/utf32_test.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/common.go b/cli/vendor/golang.org/x/text/feature/plural/common.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/common.go rename to cli/vendor/golang.org/x/text/feature/plural/common.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/data_test.go b/cli/vendor/golang.org/x/text/feature/plural/data_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/data_test.go rename to cli/vendor/golang.org/x/text/feature/plural/data_test.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/gen.go b/cli/vendor/golang.org/x/text/feature/plural/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/gen.go rename to cli/vendor/golang.org/x/text/feature/plural/gen.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/gen_common.go b/cli/vendor/golang.org/x/text/feature/plural/gen_common.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/gen_common.go rename to cli/vendor/golang.org/x/text/feature/plural/gen_common.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/plural.go b/cli/vendor/golang.org/x/text/feature/plural/plural.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/plural.go rename to cli/vendor/golang.org/x/text/feature/plural/plural.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/plural_test.go b/cli/vendor/golang.org/x/text/feature/plural/plural_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/plural_test.go rename to cli/vendor/golang.org/x/text/feature/plural/plural_test.go diff --git a/fn/vendor/golang.org/x/text/feature/plural/tables.go b/cli/vendor/golang.org/x/text/feature/plural/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/feature/plural/tables.go rename to cli/vendor/golang.org/x/text/feature/plural/tables.go diff --git a/fn/vendor/golang.org/x/text/gen.go b/cli/vendor/golang.org/x/text/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/gen.go rename to cli/vendor/golang.org/x/text/gen.go diff --git a/fn/vendor/golang.org/x/text/internal/catmsg/catmsg.go b/cli/vendor/golang.org/x/text/internal/catmsg/catmsg.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/catmsg/catmsg.go rename to cli/vendor/golang.org/x/text/internal/catmsg/catmsg.go diff --git a/fn/vendor/golang.org/x/text/internal/catmsg/catmsg_test.go b/cli/vendor/golang.org/x/text/internal/catmsg/catmsg_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/catmsg/catmsg_test.go rename to cli/vendor/golang.org/x/text/internal/catmsg/catmsg_test.go diff --git a/fn/vendor/golang.org/x/text/internal/catmsg/codec.go b/cli/vendor/golang.org/x/text/internal/catmsg/codec.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/catmsg/codec.go rename to cli/vendor/golang.org/x/text/internal/catmsg/codec.go diff --git a/fn/vendor/golang.org/x/text/internal/catmsg/varint.go b/cli/vendor/golang.org/x/text/internal/catmsg/varint.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/catmsg/varint.go rename to cli/vendor/golang.org/x/text/internal/catmsg/varint.go diff --git a/fn/vendor/golang.org/x/text/internal/catmsg/varint_test.go b/cli/vendor/golang.org/x/text/internal/catmsg/varint_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/catmsg/varint_test.go rename to cli/vendor/golang.org/x/text/internal/catmsg/varint_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/collate_test.go b/cli/vendor/golang.org/x/text/internal/colltab/collate_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/collate_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/collate_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/collelem.go b/cli/vendor/golang.org/x/text/internal/colltab/collelem.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/collelem.go rename to cli/vendor/golang.org/x/text/internal/colltab/collelem.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/collelem_test.go b/cli/vendor/golang.org/x/text/internal/colltab/collelem_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/collelem_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/collelem_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/colltab.go b/cli/vendor/golang.org/x/text/internal/colltab/colltab.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/colltab.go rename to cli/vendor/golang.org/x/text/internal/colltab/colltab.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/colltab_test.go b/cli/vendor/golang.org/x/text/internal/colltab/colltab_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/colltab_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/colltab_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/contract.go b/cli/vendor/golang.org/x/text/internal/colltab/contract.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/contract.go rename to cli/vendor/golang.org/x/text/internal/colltab/contract.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/contract_test.go b/cli/vendor/golang.org/x/text/internal/colltab/contract_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/contract_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/contract_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/iter.go b/cli/vendor/golang.org/x/text/internal/colltab/iter.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/iter.go rename to cli/vendor/golang.org/x/text/internal/colltab/iter.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/iter_test.go b/cli/vendor/golang.org/x/text/internal/colltab/iter_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/iter_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/iter_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/numeric.go b/cli/vendor/golang.org/x/text/internal/colltab/numeric.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/numeric.go rename to cli/vendor/golang.org/x/text/internal/colltab/numeric.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/numeric_test.go b/cli/vendor/golang.org/x/text/internal/colltab/numeric_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/numeric_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/numeric_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/table.go b/cli/vendor/golang.org/x/text/internal/colltab/table.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/table.go rename to cli/vendor/golang.org/x/text/internal/colltab/table.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/trie.go b/cli/vendor/golang.org/x/text/internal/colltab/trie.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/trie.go rename to cli/vendor/golang.org/x/text/internal/colltab/trie.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/trie_test.go b/cli/vendor/golang.org/x/text/internal/colltab/trie_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/trie_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/trie_test.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/weighter.go b/cli/vendor/golang.org/x/text/internal/colltab/weighter.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/weighter.go rename to cli/vendor/golang.org/x/text/internal/colltab/weighter.go diff --git a/fn/vendor/golang.org/x/text/internal/colltab/weighter_test.go b/cli/vendor/golang.org/x/text/internal/colltab/weighter_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/colltab/weighter_test.go rename to cli/vendor/golang.org/x/text/internal/colltab/weighter_test.go diff --git a/fn/vendor/golang.org/x/text/internal/export/README b/cli/vendor/golang.org/x/text/internal/export/README similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/README rename to cli/vendor/golang.org/x/text/internal/export/README diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/common_test.go b/cli/vendor/golang.org/x/text/internal/export/idna/common_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/common_test.go rename to cli/vendor/golang.org/x/text/internal/export/idna/common_test.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/example_test.go b/cli/vendor/golang.org/x/text/internal/export/idna/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/example_test.go rename to cli/vendor/golang.org/x/text/internal/export/idna/example_test.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/gen.go b/cli/vendor/golang.org/x/text/internal/export/idna/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/gen.go rename to cli/vendor/golang.org/x/text/internal/export/idna/gen.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/gen_common.go b/cli/vendor/golang.org/x/text/internal/export/idna/gen_common.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/gen_common.go rename to cli/vendor/golang.org/x/text/internal/export/idna/gen_common.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/gen_test.go b/cli/vendor/golang.org/x/text/internal/export/idna/gen_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/gen_test.go rename to cli/vendor/golang.org/x/text/internal/export/idna/gen_test.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/gen_trieval.go b/cli/vendor/golang.org/x/text/internal/export/idna/gen_trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/gen_trieval.go rename to cli/vendor/golang.org/x/text/internal/export/idna/gen_trieval.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/idna.go b/cli/vendor/golang.org/x/text/internal/export/idna/idna.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/idna.go rename to cli/vendor/golang.org/x/text/internal/export/idna/idna.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/idna_test.go b/cli/vendor/golang.org/x/text/internal/export/idna/idna_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/idna_test.go rename to cli/vendor/golang.org/x/text/internal/export/idna/idna_test.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/punycode.go b/cli/vendor/golang.org/x/text/internal/export/idna/punycode.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/punycode.go rename to cli/vendor/golang.org/x/text/internal/export/idna/punycode.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/punycode_test.go b/cli/vendor/golang.org/x/text/internal/export/idna/punycode_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/punycode_test.go rename to cli/vendor/golang.org/x/text/internal/export/idna/punycode_test.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/tables.go b/cli/vendor/golang.org/x/text/internal/export/idna/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/tables.go rename to cli/vendor/golang.org/x/text/internal/export/idna/tables.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/trie.go b/cli/vendor/golang.org/x/text/internal/export/idna/trie.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/trie.go rename to cli/vendor/golang.org/x/text/internal/export/idna/trie.go diff --git a/fn/vendor/golang.org/x/text/internal/export/idna/trieval.go b/cli/vendor/golang.org/x/text/internal/export/idna/trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/export/idna/trieval.go rename to cli/vendor/golang.org/x/text/internal/export/idna/trieval.go diff --git a/fn/vendor/golang.org/x/text/internal/format/format.go b/cli/vendor/golang.org/x/text/internal/format/format.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/format/format.go rename to cli/vendor/golang.org/x/text/internal/format/format.go diff --git a/fn/vendor/golang.org/x/text/internal/gen.go b/cli/vendor/golang.org/x/text/internal/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/gen.go rename to cli/vendor/golang.org/x/text/internal/gen.go diff --git a/fn/vendor/golang.org/x/text/internal/gen/code.go b/cli/vendor/golang.org/x/text/internal/gen/code.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/gen/code.go rename to cli/vendor/golang.org/x/text/internal/gen/code.go diff --git a/fn/vendor/golang.org/x/text/internal/gen/gen.go b/cli/vendor/golang.org/x/text/internal/gen/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/gen/gen.go rename to cli/vendor/golang.org/x/text/internal/gen/gen.go diff --git a/fn/vendor/golang.org/x/text/internal/gen_test.go b/cli/vendor/golang.org/x/text/internal/gen_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/gen_test.go rename to cli/vendor/golang.org/x/text/internal/gen_test.go diff --git a/fn/vendor/golang.org/x/text/internal/internal.go b/cli/vendor/golang.org/x/text/internal/internal.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/internal.go rename to cli/vendor/golang.org/x/text/internal/internal.go diff --git a/fn/vendor/golang.org/x/text/internal/internal_test.go b/cli/vendor/golang.org/x/text/internal/internal_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/internal_test.go rename to cli/vendor/golang.org/x/text/internal/internal_test.go diff --git a/fn/vendor/golang.org/x/text/internal/match.go b/cli/vendor/golang.org/x/text/internal/match.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/match.go rename to cli/vendor/golang.org/x/text/internal/match.go diff --git a/fn/vendor/golang.org/x/text/internal/match_test.go b/cli/vendor/golang.org/x/text/internal/match_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/match_test.go rename to cli/vendor/golang.org/x/text/internal/match_test.go diff --git a/fn/vendor/golang.org/x/text/internal/number/common.go b/cli/vendor/golang.org/x/text/internal/number/common.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/common.go rename to cli/vendor/golang.org/x/text/internal/number/common.go diff --git a/fn/vendor/golang.org/x/text/internal/number/gen.go b/cli/vendor/golang.org/x/text/internal/number/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/gen.go rename to cli/vendor/golang.org/x/text/internal/number/gen.go diff --git a/fn/vendor/golang.org/x/text/internal/number/gen_common.go b/cli/vendor/golang.org/x/text/internal/number/gen_common.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/gen_common.go rename to cli/vendor/golang.org/x/text/internal/number/gen_common.go diff --git a/fn/vendor/golang.org/x/text/internal/number/number.go b/cli/vendor/golang.org/x/text/internal/number/number.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/number.go rename to cli/vendor/golang.org/x/text/internal/number/number.go diff --git a/fn/vendor/golang.org/x/text/internal/number/number_test.go b/cli/vendor/golang.org/x/text/internal/number/number_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/number_test.go rename to cli/vendor/golang.org/x/text/internal/number/number_test.go diff --git a/fn/vendor/golang.org/x/text/internal/number/pattern.go b/cli/vendor/golang.org/x/text/internal/number/pattern.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/pattern.go rename to cli/vendor/golang.org/x/text/internal/number/pattern.go diff --git a/fn/vendor/golang.org/x/text/internal/number/pattern_test.go b/cli/vendor/golang.org/x/text/internal/number/pattern_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/pattern_test.go rename to cli/vendor/golang.org/x/text/internal/number/pattern_test.go diff --git a/fn/vendor/golang.org/x/text/internal/number/tables.go b/cli/vendor/golang.org/x/text/internal/number/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/tables.go rename to cli/vendor/golang.org/x/text/internal/number/tables.go diff --git a/fn/vendor/golang.org/x/text/internal/number/tables_test.go b/cli/vendor/golang.org/x/text/internal/number/tables_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/number/tables_test.go rename to cli/vendor/golang.org/x/text/internal/number/tables_test.go diff --git a/fn/vendor/golang.org/x/text/internal/stringset/set.go b/cli/vendor/golang.org/x/text/internal/stringset/set.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/stringset/set.go rename to cli/vendor/golang.org/x/text/internal/stringset/set.go diff --git a/fn/vendor/golang.org/x/text/internal/stringset/set_test.go b/cli/vendor/golang.org/x/text/internal/stringset/set_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/stringset/set_test.go rename to cli/vendor/golang.org/x/text/internal/stringset/set_test.go diff --git a/fn/vendor/golang.org/x/text/internal/tables.go b/cli/vendor/golang.org/x/text/internal/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/tables.go rename to cli/vendor/golang.org/x/text/internal/tables.go diff --git a/fn/vendor/golang.org/x/text/internal/tag/tag.go b/cli/vendor/golang.org/x/text/internal/tag/tag.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/tag/tag.go rename to cli/vendor/golang.org/x/text/internal/tag/tag.go diff --git a/fn/vendor/golang.org/x/text/internal/tag/tag_test.go b/cli/vendor/golang.org/x/text/internal/tag/tag_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/tag/tag_test.go rename to cli/vendor/golang.org/x/text/internal/tag/tag_test.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/codesize.go b/cli/vendor/golang.org/x/text/internal/testtext/codesize.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/codesize.go rename to cli/vendor/golang.org/x/text/internal/testtext/codesize.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/flag.go b/cli/vendor/golang.org/x/text/internal/testtext/flag.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/flag.go rename to cli/vendor/golang.org/x/text/internal/testtext/flag.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/gc.go b/cli/vendor/golang.org/x/text/internal/testtext/gc.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/gc.go rename to cli/vendor/golang.org/x/text/internal/testtext/gc.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/gccgo.go b/cli/vendor/golang.org/x/text/internal/testtext/gccgo.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/gccgo.go rename to cli/vendor/golang.org/x/text/internal/testtext/gccgo.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/go1_6.go b/cli/vendor/golang.org/x/text/internal/testtext/go1_6.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/go1_6.go rename to cli/vendor/golang.org/x/text/internal/testtext/go1_6.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/go1_7.go b/cli/vendor/golang.org/x/text/internal/testtext/go1_7.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/go1_7.go rename to cli/vendor/golang.org/x/text/internal/testtext/go1_7.go diff --git a/fn/vendor/golang.org/x/text/internal/testtext/text.go b/cli/vendor/golang.org/x/text/internal/testtext/text.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/testtext/text.go rename to cli/vendor/golang.org/x/text/internal/testtext/text.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/compact.go b/cli/vendor/golang.org/x/text/internal/triegen/compact.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/compact.go rename to cli/vendor/golang.org/x/text/internal/triegen/compact.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/data_test.go b/cli/vendor/golang.org/x/text/internal/triegen/data_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/data_test.go rename to cli/vendor/golang.org/x/text/internal/triegen/data_test.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/example_compact_test.go b/cli/vendor/golang.org/x/text/internal/triegen/example_compact_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/example_compact_test.go rename to cli/vendor/golang.org/x/text/internal/triegen/example_compact_test.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/example_test.go b/cli/vendor/golang.org/x/text/internal/triegen/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/example_test.go rename to cli/vendor/golang.org/x/text/internal/triegen/example_test.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/gen_test.go b/cli/vendor/golang.org/x/text/internal/triegen/gen_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/gen_test.go rename to cli/vendor/golang.org/x/text/internal/triegen/gen_test.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/print.go b/cli/vendor/golang.org/x/text/internal/triegen/print.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/print.go rename to cli/vendor/golang.org/x/text/internal/triegen/print.go diff --git a/fn/vendor/golang.org/x/text/internal/triegen/triegen.go b/cli/vendor/golang.org/x/text/internal/triegen/triegen.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/triegen/triegen.go rename to cli/vendor/golang.org/x/text/internal/triegen/triegen.go diff --git a/fn/vendor/golang.org/x/text/internal/ucd/example_test.go b/cli/vendor/golang.org/x/text/internal/ucd/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/ucd/example_test.go rename to cli/vendor/golang.org/x/text/internal/ucd/example_test.go diff --git a/fn/vendor/golang.org/x/text/internal/ucd/ucd.go b/cli/vendor/golang.org/x/text/internal/ucd/ucd.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/ucd/ucd.go rename to cli/vendor/golang.org/x/text/internal/ucd/ucd.go diff --git a/fn/vendor/golang.org/x/text/internal/ucd/ucd_test.go b/cli/vendor/golang.org/x/text/internal/ucd/ucd_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/ucd/ucd_test.go rename to cli/vendor/golang.org/x/text/internal/ucd/ucd_test.go diff --git a/fn/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go b/cli/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go similarity index 100% rename from fn/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go rename to cli/vendor/golang.org/x/text/internal/utf8internal/utf8internal.go diff --git a/fn/vendor/golang.org/x/text/language/Makefile b/cli/vendor/golang.org/x/text/language/Makefile similarity index 100% rename from fn/vendor/golang.org/x/text/language/Makefile rename to cli/vendor/golang.org/x/text/language/Makefile diff --git a/fn/vendor/golang.org/x/text/language/common.go b/cli/vendor/golang.org/x/text/language/common.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/common.go rename to cli/vendor/golang.org/x/text/language/common.go diff --git a/fn/vendor/golang.org/x/text/language/coverage.go b/cli/vendor/golang.org/x/text/language/coverage.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/coverage.go rename to cli/vendor/golang.org/x/text/language/coverage.go diff --git a/fn/vendor/golang.org/x/text/language/coverage_test.go b/cli/vendor/golang.org/x/text/language/coverage_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/coverage_test.go rename to cli/vendor/golang.org/x/text/language/coverage_test.go diff --git a/fn/vendor/golang.org/x/text/language/data_test.go b/cli/vendor/golang.org/x/text/language/data_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/data_test.go rename to cli/vendor/golang.org/x/text/language/data_test.go diff --git a/fn/vendor/golang.org/x/text/language/display/dict.go b/cli/vendor/golang.org/x/text/language/display/dict.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/dict.go rename to cli/vendor/golang.org/x/text/language/display/dict.go diff --git a/fn/vendor/golang.org/x/text/language/display/dict_test.go b/cli/vendor/golang.org/x/text/language/display/dict_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/dict_test.go rename to cli/vendor/golang.org/x/text/language/display/dict_test.go diff --git a/fn/vendor/golang.org/x/text/language/display/display.go b/cli/vendor/golang.org/x/text/language/display/display.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/display.go rename to cli/vendor/golang.org/x/text/language/display/display.go diff --git a/fn/vendor/golang.org/x/text/language/display/display_test.go b/cli/vendor/golang.org/x/text/language/display/display_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/display_test.go rename to cli/vendor/golang.org/x/text/language/display/display_test.go diff --git a/fn/vendor/golang.org/x/text/language/display/examples_test.go b/cli/vendor/golang.org/x/text/language/display/examples_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/examples_test.go rename to cli/vendor/golang.org/x/text/language/display/examples_test.go diff --git a/fn/vendor/golang.org/x/text/language/display/lookup.go b/cli/vendor/golang.org/x/text/language/display/lookup.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/lookup.go rename to cli/vendor/golang.org/x/text/language/display/lookup.go diff --git a/fn/vendor/golang.org/x/text/language/display/maketables.go b/cli/vendor/golang.org/x/text/language/display/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/maketables.go rename to cli/vendor/golang.org/x/text/language/display/maketables.go diff --git a/fn/vendor/golang.org/x/text/language/display/tables.go b/cli/vendor/golang.org/x/text/language/display/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/display/tables.go rename to cli/vendor/golang.org/x/text/language/display/tables.go diff --git a/fn/vendor/golang.org/x/text/language/examples_test.go b/cli/vendor/golang.org/x/text/language/examples_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/examples_test.go rename to cli/vendor/golang.org/x/text/language/examples_test.go diff --git a/fn/vendor/golang.org/x/text/language/gen_common.go b/cli/vendor/golang.org/x/text/language/gen_common.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/gen_common.go rename to cli/vendor/golang.org/x/text/language/gen_common.go diff --git a/fn/vendor/golang.org/x/text/language/gen_index.go b/cli/vendor/golang.org/x/text/language/gen_index.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/gen_index.go rename to cli/vendor/golang.org/x/text/language/gen_index.go diff --git a/fn/vendor/golang.org/x/text/language/go1_1.go b/cli/vendor/golang.org/x/text/language/go1_1.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/go1_1.go rename to cli/vendor/golang.org/x/text/language/go1_1.go diff --git a/fn/vendor/golang.org/x/text/language/go1_2.go b/cli/vendor/golang.org/x/text/language/go1_2.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/go1_2.go rename to cli/vendor/golang.org/x/text/language/go1_2.go diff --git a/fn/vendor/golang.org/x/text/language/httpexample_test.go b/cli/vendor/golang.org/x/text/language/httpexample_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/httpexample_test.go rename to cli/vendor/golang.org/x/text/language/httpexample_test.go diff --git a/fn/vendor/golang.org/x/text/language/index.go b/cli/vendor/golang.org/x/text/language/index.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/index.go rename to cli/vendor/golang.org/x/text/language/index.go diff --git a/fn/vendor/golang.org/x/text/language/language.go b/cli/vendor/golang.org/x/text/language/language.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/language.go rename to cli/vendor/golang.org/x/text/language/language.go diff --git a/fn/vendor/golang.org/x/text/language/language_test.go b/cli/vendor/golang.org/x/text/language/language_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/language_test.go rename to cli/vendor/golang.org/x/text/language/language_test.go diff --git a/fn/vendor/golang.org/x/text/language/lookup.go b/cli/vendor/golang.org/x/text/language/lookup.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/lookup.go rename to cli/vendor/golang.org/x/text/language/lookup.go diff --git a/fn/vendor/golang.org/x/text/language/lookup_test.go b/cli/vendor/golang.org/x/text/language/lookup_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/lookup_test.go rename to cli/vendor/golang.org/x/text/language/lookup_test.go diff --git a/fn/vendor/golang.org/x/text/language/maketables.go b/cli/vendor/golang.org/x/text/language/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/maketables.go rename to cli/vendor/golang.org/x/text/language/maketables.go diff --git a/fn/vendor/golang.org/x/text/language/match.go b/cli/vendor/golang.org/x/text/language/match.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/match.go rename to cli/vendor/golang.org/x/text/language/match.go diff --git a/fn/vendor/golang.org/x/text/language/match_test.go b/cli/vendor/golang.org/x/text/language/match_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/match_test.go rename to cli/vendor/golang.org/x/text/language/match_test.go diff --git a/fn/vendor/golang.org/x/text/language/parse.go b/cli/vendor/golang.org/x/text/language/parse.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/parse.go rename to cli/vendor/golang.org/x/text/language/parse.go diff --git a/fn/vendor/golang.org/x/text/language/parse_test.go b/cli/vendor/golang.org/x/text/language/parse_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/parse_test.go rename to cli/vendor/golang.org/x/text/language/parse_test.go diff --git a/fn/vendor/golang.org/x/text/language/tables.go b/cli/vendor/golang.org/x/text/language/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/tables.go rename to cli/vendor/golang.org/x/text/language/tables.go diff --git a/fn/vendor/golang.org/x/text/language/tags.go b/cli/vendor/golang.org/x/text/language/tags.go similarity index 100% rename from fn/vendor/golang.org/x/text/language/tags.go rename to cli/vendor/golang.org/x/text/language/tags.go diff --git a/fn/vendor/golang.org/x/text/message/catalog.go b/cli/vendor/golang.org/x/text/message/catalog.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/catalog.go rename to cli/vendor/golang.org/x/text/message/catalog.go diff --git a/fn/vendor/golang.org/x/text/message/catalog/catalog.go b/cli/vendor/golang.org/x/text/message/catalog/catalog.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/catalog/catalog.go rename to cli/vendor/golang.org/x/text/message/catalog/catalog.go diff --git a/fn/vendor/golang.org/x/text/message/catalog/catalog_test.go b/cli/vendor/golang.org/x/text/message/catalog/catalog_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/catalog/catalog_test.go rename to cli/vendor/golang.org/x/text/message/catalog/catalog_test.go diff --git a/fn/vendor/golang.org/x/text/message/catalog/dict.go b/cli/vendor/golang.org/x/text/message/catalog/dict.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/catalog/dict.go rename to cli/vendor/golang.org/x/text/message/catalog/dict.go diff --git a/fn/vendor/golang.org/x/text/message/fmt_test.go b/cli/vendor/golang.org/x/text/message/fmt_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/fmt_test.go rename to cli/vendor/golang.org/x/text/message/fmt_test.go diff --git a/fn/vendor/golang.org/x/text/message/format.go b/cli/vendor/golang.org/x/text/message/format.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/format.go rename to cli/vendor/golang.org/x/text/message/format.go diff --git a/fn/vendor/golang.org/x/text/message/message.go b/cli/vendor/golang.org/x/text/message/message.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/message.go rename to cli/vendor/golang.org/x/text/message/message.go diff --git a/fn/vendor/golang.org/x/text/message/message_test.go b/cli/vendor/golang.org/x/text/message/message_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/message_test.go rename to cli/vendor/golang.org/x/text/message/message_test.go diff --git a/fn/vendor/golang.org/x/text/message/print.go b/cli/vendor/golang.org/x/text/message/print.go similarity index 100% rename from fn/vendor/golang.org/x/text/message/print.go rename to cli/vendor/golang.org/x/text/message/print.go diff --git a/fn/vendor/golang.org/x/text/runes/cond.go b/cli/vendor/golang.org/x/text/runes/cond.go similarity index 100% rename from fn/vendor/golang.org/x/text/runes/cond.go rename to cli/vendor/golang.org/x/text/runes/cond.go diff --git a/fn/vendor/golang.org/x/text/runes/cond_test.go b/cli/vendor/golang.org/x/text/runes/cond_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/runes/cond_test.go rename to cli/vendor/golang.org/x/text/runes/cond_test.go diff --git a/fn/vendor/golang.org/x/text/runes/example_test.go b/cli/vendor/golang.org/x/text/runes/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/runes/example_test.go rename to cli/vendor/golang.org/x/text/runes/example_test.go diff --git a/fn/vendor/golang.org/x/text/runes/runes.go b/cli/vendor/golang.org/x/text/runes/runes.go similarity index 100% rename from fn/vendor/golang.org/x/text/runes/runes.go rename to cli/vendor/golang.org/x/text/runes/runes.go diff --git a/fn/vendor/golang.org/x/text/runes/runes_test.go b/cli/vendor/golang.org/x/text/runes/runes_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/runes/runes_test.go rename to cli/vendor/golang.org/x/text/runes/runes_test.go diff --git a/fn/vendor/golang.org/x/text/search/index.go b/cli/vendor/golang.org/x/text/search/index.go similarity index 100% rename from fn/vendor/golang.org/x/text/search/index.go rename to cli/vendor/golang.org/x/text/search/index.go diff --git a/fn/vendor/golang.org/x/text/search/pattern.go b/cli/vendor/golang.org/x/text/search/pattern.go similarity index 100% rename from fn/vendor/golang.org/x/text/search/pattern.go rename to cli/vendor/golang.org/x/text/search/pattern.go diff --git a/fn/vendor/golang.org/x/text/search/pattern_test.go b/cli/vendor/golang.org/x/text/search/pattern_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/search/pattern_test.go rename to cli/vendor/golang.org/x/text/search/pattern_test.go diff --git a/fn/vendor/golang.org/x/text/search/search.go b/cli/vendor/golang.org/x/text/search/search.go similarity index 100% rename from fn/vendor/golang.org/x/text/search/search.go rename to cli/vendor/golang.org/x/text/search/search.go diff --git a/fn/vendor/golang.org/x/text/search/tables.go b/cli/vendor/golang.org/x/text/search/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/search/tables.go rename to cli/vendor/golang.org/x/text/search/tables.go diff --git a/fn/vendor/golang.org/x/text/secure/bidirule/bench_test.go b/cli/vendor/golang.org/x/text/secure/bidirule/bench_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/bidirule/bench_test.go rename to cli/vendor/golang.org/x/text/secure/bidirule/bench_test.go diff --git a/fn/vendor/golang.org/x/text/secure/bidirule/bidirule.go b/cli/vendor/golang.org/x/text/secure/bidirule/bidirule.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/bidirule/bidirule.go rename to cli/vendor/golang.org/x/text/secure/bidirule/bidirule.go diff --git a/fn/vendor/golang.org/x/text/secure/bidirule/bidirule_test.go b/cli/vendor/golang.org/x/text/secure/bidirule/bidirule_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/bidirule/bidirule_test.go rename to cli/vendor/golang.org/x/text/secure/bidirule/bidirule_test.go diff --git a/fn/vendor/golang.org/x/text/secure/doc.go b/cli/vendor/golang.org/x/text/secure/doc.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/doc.go rename to cli/vendor/golang.org/x/text/secure/doc.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/benchmark_test.go b/cli/vendor/golang.org/x/text/secure/precis/benchmark_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/benchmark_test.go rename to cli/vendor/golang.org/x/text/secure/precis/benchmark_test.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/class.go b/cli/vendor/golang.org/x/text/secure/precis/class.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/class.go rename to cli/vendor/golang.org/x/text/secure/precis/class.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/class_test.go b/cli/vendor/golang.org/x/text/secure/precis/class_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/class_test.go rename to cli/vendor/golang.org/x/text/secure/precis/class_test.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/context.go b/cli/vendor/golang.org/x/text/secure/precis/context.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/context.go rename to cli/vendor/golang.org/x/text/secure/precis/context.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/doc.go b/cli/vendor/golang.org/x/text/secure/precis/doc.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/doc.go rename to cli/vendor/golang.org/x/text/secure/precis/doc.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/enforce_test.go b/cli/vendor/golang.org/x/text/secure/precis/enforce_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/enforce_test.go rename to cli/vendor/golang.org/x/text/secure/precis/enforce_test.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/gen.go b/cli/vendor/golang.org/x/text/secure/precis/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/gen.go rename to cli/vendor/golang.org/x/text/secure/precis/gen.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/gen_trieval.go b/cli/vendor/golang.org/x/text/secure/precis/gen_trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/gen_trieval.go rename to cli/vendor/golang.org/x/text/secure/precis/gen_trieval.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/nickname.go b/cli/vendor/golang.org/x/text/secure/precis/nickname.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/nickname.go rename to cli/vendor/golang.org/x/text/secure/precis/nickname.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/options.go b/cli/vendor/golang.org/x/text/secure/precis/options.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/options.go rename to cli/vendor/golang.org/x/text/secure/precis/options.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/profile.go b/cli/vendor/golang.org/x/text/secure/precis/profile.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/profile.go rename to cli/vendor/golang.org/x/text/secure/precis/profile.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/profile_test.go b/cli/vendor/golang.org/x/text/secure/precis/profile_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/profile_test.go rename to cli/vendor/golang.org/x/text/secure/precis/profile_test.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/profiles.go b/cli/vendor/golang.org/x/text/secure/precis/profiles.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/profiles.go rename to cli/vendor/golang.org/x/text/secure/precis/profiles.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/tables.go b/cli/vendor/golang.org/x/text/secure/precis/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/tables.go rename to cli/vendor/golang.org/x/text/secure/precis/tables.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/tables_test.go b/cli/vendor/golang.org/x/text/secure/precis/tables_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/tables_test.go rename to cli/vendor/golang.org/x/text/secure/precis/tables_test.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/transformer.go b/cli/vendor/golang.org/x/text/secure/precis/transformer.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/transformer.go rename to cli/vendor/golang.org/x/text/secure/precis/transformer.go diff --git a/fn/vendor/golang.org/x/text/secure/precis/trieval.go b/cli/vendor/golang.org/x/text/secure/precis/trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/secure/precis/trieval.go rename to cli/vendor/golang.org/x/text/secure/precis/trieval.go diff --git a/fn/vendor/golang.org/x/text/transform/examples_test.go b/cli/vendor/golang.org/x/text/transform/examples_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/transform/examples_test.go rename to cli/vendor/golang.org/x/text/transform/examples_test.go diff --git a/fn/vendor/golang.org/x/text/transform/transform.go b/cli/vendor/golang.org/x/text/transform/transform.go similarity index 100% rename from fn/vendor/golang.org/x/text/transform/transform.go rename to cli/vendor/golang.org/x/text/transform/transform.go diff --git a/fn/vendor/golang.org/x/text/transform/transform_test.go b/cli/vendor/golang.org/x/text/transform/transform_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/transform/transform_test.go rename to cli/vendor/golang.org/x/text/transform/transform_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/bidi.go b/cli/vendor/golang.org/x/text/unicode/bidi/bidi.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/bidi.go rename to cli/vendor/golang.org/x/text/unicode/bidi/bidi.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/bracket.go b/cli/vendor/golang.org/x/text/unicode/bidi/bracket.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/bracket.go rename to cli/vendor/golang.org/x/text/unicode/bidi/bracket.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/core.go b/cli/vendor/golang.org/x/text/unicode/bidi/core.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/core.go rename to cli/vendor/golang.org/x/text/unicode/bidi/core.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/core_test.go b/cli/vendor/golang.org/x/text/unicode/bidi/core_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/core_test.go rename to cli/vendor/golang.org/x/text/unicode/bidi/core_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/gen.go b/cli/vendor/golang.org/x/text/unicode/bidi/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/gen.go rename to cli/vendor/golang.org/x/text/unicode/bidi/gen.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go b/cli/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go rename to cli/vendor/golang.org/x/text/unicode/bidi/gen_ranges.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go b/cli/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go rename to cli/vendor/golang.org/x/text/unicode/bidi/gen_trieval.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/prop.go b/cli/vendor/golang.org/x/text/unicode/bidi/prop.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/prop.go rename to cli/vendor/golang.org/x/text/unicode/bidi/prop.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/ranges_test.go b/cli/vendor/golang.org/x/text/unicode/bidi/ranges_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/ranges_test.go rename to cli/vendor/golang.org/x/text/unicode/bidi/ranges_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/tables.go b/cli/vendor/golang.org/x/text/unicode/bidi/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/tables.go rename to cli/vendor/golang.org/x/text/unicode/bidi/tables.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/tables_test.go b/cli/vendor/golang.org/x/text/unicode/bidi/tables_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/tables_test.go rename to cli/vendor/golang.org/x/text/unicode/bidi/tables_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/bidi/trieval.go b/cli/vendor/golang.org/x/text/unicode/bidi/trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/bidi/trieval.go rename to cli/vendor/golang.org/x/text/unicode/bidi/trieval.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/base.go b/cli/vendor/golang.org/x/text/unicode/cldr/base.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/base.go rename to cli/vendor/golang.org/x/text/unicode/cldr/base.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/cldr.go b/cli/vendor/golang.org/x/text/unicode/cldr/cldr.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/cldr.go rename to cli/vendor/golang.org/x/text/unicode/cldr/cldr.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/cldr_test.go b/cli/vendor/golang.org/x/text/unicode/cldr/cldr_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/cldr_test.go rename to cli/vendor/golang.org/x/text/unicode/cldr/cldr_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/collate.go b/cli/vendor/golang.org/x/text/unicode/cldr/collate.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/collate.go rename to cli/vendor/golang.org/x/text/unicode/cldr/collate.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/collate_test.go b/cli/vendor/golang.org/x/text/unicode/cldr/collate_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/collate_test.go rename to cli/vendor/golang.org/x/text/unicode/cldr/collate_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/data_test.go b/cli/vendor/golang.org/x/text/unicode/cldr/data_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/data_test.go rename to cli/vendor/golang.org/x/text/unicode/cldr/data_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/decode.go b/cli/vendor/golang.org/x/text/unicode/cldr/decode.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/decode.go rename to cli/vendor/golang.org/x/text/unicode/cldr/decode.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/examples_test.go b/cli/vendor/golang.org/x/text/unicode/cldr/examples_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/examples_test.go rename to cli/vendor/golang.org/x/text/unicode/cldr/examples_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/makexml.go b/cli/vendor/golang.org/x/text/unicode/cldr/makexml.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/makexml.go rename to cli/vendor/golang.org/x/text/unicode/cldr/makexml.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/resolve.go b/cli/vendor/golang.org/x/text/unicode/cldr/resolve.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/resolve.go rename to cli/vendor/golang.org/x/text/unicode/cldr/resolve.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/resolve_test.go b/cli/vendor/golang.org/x/text/unicode/cldr/resolve_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/resolve_test.go rename to cli/vendor/golang.org/x/text/unicode/cldr/resolve_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/slice.go b/cli/vendor/golang.org/x/text/unicode/cldr/slice.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/slice.go rename to cli/vendor/golang.org/x/text/unicode/cldr/slice.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/slice_test.go b/cli/vendor/golang.org/x/text/unicode/cldr/slice_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/slice_test.go rename to cli/vendor/golang.org/x/text/unicode/cldr/slice_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/cldr/xml.go b/cli/vendor/golang.org/x/text/unicode/cldr/xml.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/cldr/xml.go rename to cli/vendor/golang.org/x/text/unicode/cldr/xml.go diff --git a/fn/vendor/golang.org/x/text/unicode/doc.go b/cli/vendor/golang.org/x/text/unicode/doc.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/doc.go rename to cli/vendor/golang.org/x/text/unicode/doc.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/composition.go b/cli/vendor/golang.org/x/text/unicode/norm/composition.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/composition.go rename to cli/vendor/golang.org/x/text/unicode/norm/composition.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/composition_test.go b/cli/vendor/golang.org/x/text/unicode/norm/composition_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/composition_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/composition_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/example_iter_test.go b/cli/vendor/golang.org/x/text/unicode/norm/example_iter_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/example_iter_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/example_iter_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/example_test.go b/cli/vendor/golang.org/x/text/unicode/norm/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/example_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/example_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/forminfo.go b/cli/vendor/golang.org/x/text/unicode/norm/forminfo.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/forminfo.go rename to cli/vendor/golang.org/x/text/unicode/norm/forminfo.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/forminfo_test.go b/cli/vendor/golang.org/x/text/unicode/norm/forminfo_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/forminfo_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/forminfo_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/input.go b/cli/vendor/golang.org/x/text/unicode/norm/input.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/input.go rename to cli/vendor/golang.org/x/text/unicode/norm/input.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/iter.go b/cli/vendor/golang.org/x/text/unicode/norm/iter.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/iter.go rename to cli/vendor/golang.org/x/text/unicode/norm/iter.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/iter_test.go b/cli/vendor/golang.org/x/text/unicode/norm/iter_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/iter_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/iter_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/maketables.go b/cli/vendor/golang.org/x/text/unicode/norm/maketables.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/maketables.go rename to cli/vendor/golang.org/x/text/unicode/norm/maketables.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/norm_test.go b/cli/vendor/golang.org/x/text/unicode/norm/norm_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/norm_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/norm_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/normalize.go b/cli/vendor/golang.org/x/text/unicode/norm/normalize.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/normalize.go rename to cli/vendor/golang.org/x/text/unicode/norm/normalize.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/normalize_test.go b/cli/vendor/golang.org/x/text/unicode/norm/normalize_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/normalize_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/normalize_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/readwriter.go b/cli/vendor/golang.org/x/text/unicode/norm/readwriter.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/readwriter.go rename to cli/vendor/golang.org/x/text/unicode/norm/readwriter.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/readwriter_test.go b/cli/vendor/golang.org/x/text/unicode/norm/readwriter_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/readwriter_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/readwriter_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/tables.go b/cli/vendor/golang.org/x/text/unicode/norm/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/tables.go rename to cli/vendor/golang.org/x/text/unicode/norm/tables.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/transform.go b/cli/vendor/golang.org/x/text/unicode/norm/transform.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/transform.go rename to cli/vendor/golang.org/x/text/unicode/norm/transform.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/transform_test.go b/cli/vendor/golang.org/x/text/unicode/norm/transform_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/transform_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/transform_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/trie.go b/cli/vendor/golang.org/x/text/unicode/norm/trie.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/trie.go rename to cli/vendor/golang.org/x/text/unicode/norm/trie.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/triegen.go b/cli/vendor/golang.org/x/text/unicode/norm/triegen.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/triegen.go rename to cli/vendor/golang.org/x/text/unicode/norm/triegen.go diff --git a/fn/vendor/golang.org/x/text/unicode/norm/ucd_test.go b/cli/vendor/golang.org/x/text/unicode/norm/ucd_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/norm/ucd_test.go rename to cli/vendor/golang.org/x/text/unicode/norm/ucd_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/rangetable/gen.go b/cli/vendor/golang.org/x/text/unicode/rangetable/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/rangetable/gen.go rename to cli/vendor/golang.org/x/text/unicode/rangetable/gen.go diff --git a/fn/vendor/golang.org/x/text/unicode/rangetable/merge.go b/cli/vendor/golang.org/x/text/unicode/rangetable/merge.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/rangetable/merge.go rename to cli/vendor/golang.org/x/text/unicode/rangetable/merge.go diff --git a/fn/vendor/golang.org/x/text/unicode/rangetable/merge_test.go b/cli/vendor/golang.org/x/text/unicode/rangetable/merge_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/rangetable/merge_test.go rename to cli/vendor/golang.org/x/text/unicode/rangetable/merge_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/rangetable/rangetable.go b/cli/vendor/golang.org/x/text/unicode/rangetable/rangetable.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/rangetable/rangetable.go rename to cli/vendor/golang.org/x/text/unicode/rangetable/rangetable.go diff --git a/fn/vendor/golang.org/x/text/unicode/rangetable/rangetable_test.go b/cli/vendor/golang.org/x/text/unicode/rangetable/rangetable_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/rangetable/rangetable_test.go rename to cli/vendor/golang.org/x/text/unicode/rangetable/rangetable_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/rangetable/tables.go b/cli/vendor/golang.org/x/text/unicode/rangetable/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/rangetable/tables.go rename to cli/vendor/golang.org/x/text/unicode/rangetable/tables.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/bits.go b/cli/vendor/golang.org/x/text/unicode/runenames/bits.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/bits.go rename to cli/vendor/golang.org/x/text/unicode/runenames/bits.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/example_test.go b/cli/vendor/golang.org/x/text/unicode/runenames/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/example_test.go rename to cli/vendor/golang.org/x/text/unicode/runenames/example_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/gen.go b/cli/vendor/golang.org/x/text/unicode/runenames/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/gen.go rename to cli/vendor/golang.org/x/text/unicode/runenames/gen.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/gen_bits.go b/cli/vendor/golang.org/x/text/unicode/runenames/gen_bits.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/gen_bits.go rename to cli/vendor/golang.org/x/text/unicode/runenames/gen_bits.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/runenames.go b/cli/vendor/golang.org/x/text/unicode/runenames/runenames.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/runenames.go rename to cli/vendor/golang.org/x/text/unicode/runenames/runenames.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/runenames_test.go b/cli/vendor/golang.org/x/text/unicode/runenames/runenames_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/runenames_test.go rename to cli/vendor/golang.org/x/text/unicode/runenames/runenames_test.go diff --git a/fn/vendor/golang.org/x/text/unicode/runenames/tables.go b/cli/vendor/golang.org/x/text/unicode/runenames/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/unicode/runenames/tables.go rename to cli/vendor/golang.org/x/text/unicode/runenames/tables.go diff --git a/fn/vendor/golang.org/x/text/width/common_test.go b/cli/vendor/golang.org/x/text/width/common_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/common_test.go rename to cli/vendor/golang.org/x/text/width/common_test.go diff --git a/fn/vendor/golang.org/x/text/width/example_test.go b/cli/vendor/golang.org/x/text/width/example_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/example_test.go rename to cli/vendor/golang.org/x/text/width/example_test.go diff --git a/fn/vendor/golang.org/x/text/width/gen.go b/cli/vendor/golang.org/x/text/width/gen.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/gen.go rename to cli/vendor/golang.org/x/text/width/gen.go diff --git a/fn/vendor/golang.org/x/text/width/gen_common.go b/cli/vendor/golang.org/x/text/width/gen_common.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/gen_common.go rename to cli/vendor/golang.org/x/text/width/gen_common.go diff --git a/fn/vendor/golang.org/x/text/width/gen_trieval.go b/cli/vendor/golang.org/x/text/width/gen_trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/gen_trieval.go rename to cli/vendor/golang.org/x/text/width/gen_trieval.go diff --git a/fn/vendor/golang.org/x/text/width/kind_string.go b/cli/vendor/golang.org/x/text/width/kind_string.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/kind_string.go rename to cli/vendor/golang.org/x/text/width/kind_string.go diff --git a/fn/vendor/golang.org/x/text/width/runes_test.go b/cli/vendor/golang.org/x/text/width/runes_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/runes_test.go rename to cli/vendor/golang.org/x/text/width/runes_test.go diff --git a/fn/vendor/golang.org/x/text/width/tables.go b/cli/vendor/golang.org/x/text/width/tables.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/tables.go rename to cli/vendor/golang.org/x/text/width/tables.go diff --git a/fn/vendor/golang.org/x/text/width/tables_test.go b/cli/vendor/golang.org/x/text/width/tables_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/tables_test.go rename to cli/vendor/golang.org/x/text/width/tables_test.go diff --git a/fn/vendor/golang.org/x/text/width/transform.go b/cli/vendor/golang.org/x/text/width/transform.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/transform.go rename to cli/vendor/golang.org/x/text/width/transform.go diff --git a/fn/vendor/golang.org/x/text/width/transform_test.go b/cli/vendor/golang.org/x/text/width/transform_test.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/transform_test.go rename to cli/vendor/golang.org/x/text/width/transform_test.go diff --git a/fn/vendor/golang.org/x/text/width/trieval.go b/cli/vendor/golang.org/x/text/width/trieval.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/trieval.go rename to cli/vendor/golang.org/x/text/width/trieval.go diff --git a/fn/vendor/golang.org/x/text/width/width.go b/cli/vendor/golang.org/x/text/width/width.go similarity index 100% rename from fn/vendor/golang.org/x/text/width/width.go rename to cli/vendor/golang.org/x/text/width/width.go diff --git a/fn/vendor/gopkg.in/mgo.v2/.travis.yml b/cli/vendor/gopkg.in/mgo.v2/.travis.yml similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/.travis.yml rename to cli/vendor/gopkg.in/mgo.v2/.travis.yml diff --git a/fn/vendor/gopkg.in/mgo.v2/LICENSE b/cli/vendor/gopkg.in/mgo.v2/LICENSE similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/LICENSE rename to cli/vendor/gopkg.in/mgo.v2/LICENSE diff --git a/fn/vendor/gopkg.in/mgo.v2/Makefile b/cli/vendor/gopkg.in/mgo.v2/Makefile similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/Makefile rename to cli/vendor/gopkg.in/mgo.v2/Makefile diff --git a/fn/vendor/gopkg.in/mgo.v2/README.md b/cli/vendor/gopkg.in/mgo.v2/README.md similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/README.md rename to cli/vendor/gopkg.in/mgo.v2/README.md diff --git a/fn/vendor/gopkg.in/mgo.v2/auth.go b/cli/vendor/gopkg.in/mgo.v2/auth.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/auth.go rename to cli/vendor/gopkg.in/mgo.v2/auth.go diff --git a/fn/vendor/gopkg.in/mgo.v2/auth_test.go b/cli/vendor/gopkg.in/mgo.v2/auth_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/auth_test.go rename to cli/vendor/gopkg.in/mgo.v2/auth_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/LICENSE b/cli/vendor/gopkg.in/mgo.v2/bson/LICENSE similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/LICENSE rename to cli/vendor/gopkg.in/mgo.v2/bson/LICENSE diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/bson.go b/cli/vendor/gopkg.in/mgo.v2/bson/bson.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/bson.go rename to cli/vendor/gopkg.in/mgo.v2/bson/bson.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/bson_test.go b/cli/vendor/gopkg.in/mgo.v2/bson/bson_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/bson_test.go rename to cli/vendor/gopkg.in/mgo.v2/bson/bson_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/decimal.go b/cli/vendor/gopkg.in/mgo.v2/bson/decimal.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/decimal.go rename to cli/vendor/gopkg.in/mgo.v2/bson/decimal.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/decimal_test.go b/cli/vendor/gopkg.in/mgo.v2/bson/decimal_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/decimal_test.go rename to cli/vendor/gopkg.in/mgo.v2/bson/decimal_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/decode.go b/cli/vendor/gopkg.in/mgo.v2/bson/decode.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/decode.go rename to cli/vendor/gopkg.in/mgo.v2/bson/decode.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/encode.go b/cli/vendor/gopkg.in/mgo.v2/bson/encode.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/encode.go rename to cli/vendor/gopkg.in/mgo.v2/bson/encode.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/json.go b/cli/vendor/gopkg.in/mgo.v2/bson/json.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/json.go rename to cli/vendor/gopkg.in/mgo.v2/bson/json.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/json_test.go b/cli/vendor/gopkg.in/mgo.v2/bson/json_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/json_test.go rename to cli/vendor/gopkg.in/mgo.v2/bson/json_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/specdata/update.sh b/cli/vendor/gopkg.in/mgo.v2/bson/specdata/update.sh similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/specdata/update.sh rename to cli/vendor/gopkg.in/mgo.v2/bson/specdata/update.sh diff --git a/fn/vendor/gopkg.in/mgo.v2/bson/specdata_test.go b/cli/vendor/gopkg.in/mgo.v2/bson/specdata_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bson/specdata_test.go rename to cli/vendor/gopkg.in/mgo.v2/bson/specdata_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bulk.go b/cli/vendor/gopkg.in/mgo.v2/bulk.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bulk.go rename to cli/vendor/gopkg.in/mgo.v2/bulk.go diff --git a/fn/vendor/gopkg.in/mgo.v2/bulk_test.go b/cli/vendor/gopkg.in/mgo.v2/bulk_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/bulk_test.go rename to cli/vendor/gopkg.in/mgo.v2/bulk_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/cluster.go b/cli/vendor/gopkg.in/mgo.v2/cluster.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/cluster.go rename to cli/vendor/gopkg.in/mgo.v2/cluster.go diff --git a/fn/vendor/gopkg.in/mgo.v2/cluster_test.go b/cli/vendor/gopkg.in/mgo.v2/cluster_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/cluster_test.go rename to cli/vendor/gopkg.in/mgo.v2/cluster_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/dbtest/dbserver.go b/cli/vendor/gopkg.in/mgo.v2/dbtest/dbserver.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/dbtest/dbserver.go rename to cli/vendor/gopkg.in/mgo.v2/dbtest/dbserver.go diff --git a/fn/vendor/gopkg.in/mgo.v2/dbtest/dbserver_test.go b/cli/vendor/gopkg.in/mgo.v2/dbtest/dbserver_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/dbtest/dbserver_test.go rename to cli/vendor/gopkg.in/mgo.v2/dbtest/dbserver_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/dbtest/export_test.go b/cli/vendor/gopkg.in/mgo.v2/dbtest/export_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/dbtest/export_test.go rename to cli/vendor/gopkg.in/mgo.v2/dbtest/export_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/doc.go b/cli/vendor/gopkg.in/mgo.v2/doc.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/doc.go rename to cli/vendor/gopkg.in/mgo.v2/doc.go diff --git a/fn/vendor/gopkg.in/mgo.v2/export_test.go b/cli/vendor/gopkg.in/mgo.v2/export_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/export_test.go rename to cli/vendor/gopkg.in/mgo.v2/export_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/gridfs.go b/cli/vendor/gopkg.in/mgo.v2/gridfs.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/gridfs.go rename to cli/vendor/gopkg.in/mgo.v2/gridfs.go diff --git a/fn/vendor/gopkg.in/mgo.v2/gridfs_test.go b/cli/vendor/gopkg.in/mgo.v2/gridfs_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/gridfs_test.go rename to cli/vendor/gopkg.in/mgo.v2/gridfs_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/certs/client.crt b/cli/vendor/gopkg.in/mgo.v2/harness/certs/client.crt similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/certs/client.crt rename to cli/vendor/gopkg.in/mgo.v2/harness/certs/client.crt diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/certs/client.key b/cli/vendor/gopkg.in/mgo.v2/harness/certs/client.key similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/certs/client.key rename to cli/vendor/gopkg.in/mgo.v2/harness/certs/client.key diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/certs/client.req b/cli/vendor/gopkg.in/mgo.v2/harness/certs/client.req similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/certs/client.req rename to cli/vendor/gopkg.in/mgo.v2/harness/certs/client.req diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/certs/server.crt b/cli/vendor/gopkg.in/mgo.v2/harness/certs/server.crt similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/certs/server.crt rename to cli/vendor/gopkg.in/mgo.v2/harness/certs/server.crt diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/certs/server.key b/cli/vendor/gopkg.in/mgo.v2/harness/certs/server.key similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/certs/server.key rename to cli/vendor/gopkg.in/mgo.v2/harness/certs/server.key diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/journal/tempLatencyTest b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/journal/tempLatencyTest similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/journal/tempLatencyTest rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/journal/tempLatencyTest diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/mongod.lock b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/mongod.lock similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/mongod.lock rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/db/mongod.lock diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg1/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg2/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/cfg3/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db1/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db1/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db1/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db1/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db1/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db1/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db1/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db1/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db1/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db1/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db1/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db1/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db2/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db2/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db2/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db2/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db2/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db2/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db2/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db2/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db2/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db2/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db2/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db2/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db3/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db3/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db3/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db3/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db3/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db3/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db3/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db3/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/db3/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/db3/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/db3/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/db3/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1a/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1b/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs1c/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2a/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2b/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs2c/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3a/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3b/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs3c/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/db/.empty b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/db/.empty similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/db/.empty rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/db/.empty diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/rs4a/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/s1/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/s1/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/s1/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/s1/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/s1/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/s1/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/s1/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/s1/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/s2/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/s2/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/s2/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/s2/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/s2/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/s2/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/s2/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/s2/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/s3/log/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/s3/log/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/s3/log/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/s3/log/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/daemons/s3/run b/cli/vendor/gopkg.in/mgo.v2/harness/daemons/s3/run similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/daemons/s3/run rename to cli/vendor/gopkg.in/mgo.v2/harness/daemons/s3/run diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/mongojs/dropall.js b/cli/vendor/gopkg.in/mgo.v2/harness/mongojs/dropall.js similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/mongojs/dropall.js rename to cli/vendor/gopkg.in/mgo.v2/harness/mongojs/dropall.js diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/mongojs/init.js b/cli/vendor/gopkg.in/mgo.v2/harness/mongojs/init.js similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/mongojs/init.js rename to cli/vendor/gopkg.in/mgo.v2/harness/mongojs/init.js diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/mongojs/wait.js b/cli/vendor/gopkg.in/mgo.v2/harness/mongojs/wait.js similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/mongojs/wait.js rename to cli/vendor/gopkg.in/mgo.v2/harness/mongojs/wait.js diff --git a/fn/vendor/gopkg.in/mgo.v2/harness/setup.sh b/cli/vendor/gopkg.in/mgo.v2/harness/setup.sh similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/harness/setup.sh rename to cli/vendor/gopkg.in/mgo.v2/harness/setup.sh diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/LICENSE b/cli/vendor/gopkg.in/mgo.v2/internal/json/LICENSE similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/LICENSE rename to cli/vendor/gopkg.in/mgo.v2/internal/json/LICENSE diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/bench_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/bench_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/bench_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/bench_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/decode.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/decode.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/decode.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/decode.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/decode_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/decode_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/decode_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/decode_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/encode.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/encode.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/encode.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/encode.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/encode_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/encode_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/encode_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/encode_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/example_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/example_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/example_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/example_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/extension.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/extension.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/extension.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/extension.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/extension_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/extension_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/extension_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/extension_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/fold.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/fold.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/fold.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/fold.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/fold_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/fold_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/fold_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/fold_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/indent.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/indent.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/indent.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/indent.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/number_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/number_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/number_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/number_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/scanner.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/scanner.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/scanner.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/scanner.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/scanner_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/scanner_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/scanner_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/scanner_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/stream.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/stream.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/stream.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/stream.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/stream_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/stream_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/stream_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/stream_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/tagkey_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/tagkey_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/tagkey_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/tagkey_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/tags.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/tags.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/tags.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/tags.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/tags_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/json/tags_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/tags_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/json/tags_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/json/testdata/code.json.gz b/cli/vendor/gopkg.in/mgo.v2/internal/json/testdata/code.json.gz similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/json/testdata/code.json.gz rename to cli/vendor/gopkg.in/mgo.v2/internal/json/testdata/code.json.gz diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.c diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.c diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sasl_windows.h diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.c diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h b/cli/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h rename to cli/vendor/gopkg.in/mgo.v2/internal/sasl/sspi_windows.h diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/scram/scram.go b/cli/vendor/gopkg.in/mgo.v2/internal/scram/scram.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/scram/scram.go rename to cli/vendor/gopkg.in/mgo.v2/internal/scram/scram.go diff --git a/fn/vendor/gopkg.in/mgo.v2/internal/scram/scram_test.go b/cli/vendor/gopkg.in/mgo.v2/internal/scram/scram_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/internal/scram/scram_test.go rename to cli/vendor/gopkg.in/mgo.v2/internal/scram/scram_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/log.go b/cli/vendor/gopkg.in/mgo.v2/log.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/log.go rename to cli/vendor/gopkg.in/mgo.v2/log.go diff --git a/fn/vendor/gopkg.in/mgo.v2/queue.go b/cli/vendor/gopkg.in/mgo.v2/queue.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/queue.go rename to cli/vendor/gopkg.in/mgo.v2/queue.go diff --git a/fn/vendor/gopkg.in/mgo.v2/queue_test.go b/cli/vendor/gopkg.in/mgo.v2/queue_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/queue_test.go rename to cli/vendor/gopkg.in/mgo.v2/queue_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/raceoff.go b/cli/vendor/gopkg.in/mgo.v2/raceoff.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/raceoff.go rename to cli/vendor/gopkg.in/mgo.v2/raceoff.go diff --git a/fn/vendor/gopkg.in/mgo.v2/raceon.go b/cli/vendor/gopkg.in/mgo.v2/raceon.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/raceon.go rename to cli/vendor/gopkg.in/mgo.v2/raceon.go diff --git a/fn/vendor/gopkg.in/mgo.v2/saslimpl.go b/cli/vendor/gopkg.in/mgo.v2/saslimpl.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/saslimpl.go rename to cli/vendor/gopkg.in/mgo.v2/saslimpl.go diff --git a/fn/vendor/gopkg.in/mgo.v2/saslstub.go b/cli/vendor/gopkg.in/mgo.v2/saslstub.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/saslstub.go rename to cli/vendor/gopkg.in/mgo.v2/saslstub.go diff --git a/fn/vendor/gopkg.in/mgo.v2/server.go b/cli/vendor/gopkg.in/mgo.v2/server.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/server.go rename to cli/vendor/gopkg.in/mgo.v2/server.go diff --git a/fn/vendor/gopkg.in/mgo.v2/session.go b/cli/vendor/gopkg.in/mgo.v2/session.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/session.go rename to cli/vendor/gopkg.in/mgo.v2/session.go diff --git a/fn/vendor/gopkg.in/mgo.v2/session_test.go b/cli/vendor/gopkg.in/mgo.v2/session_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/session_test.go rename to cli/vendor/gopkg.in/mgo.v2/session_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/socket.go b/cli/vendor/gopkg.in/mgo.v2/socket.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/socket.go rename to cli/vendor/gopkg.in/mgo.v2/socket.go diff --git a/fn/vendor/gopkg.in/mgo.v2/stats.go b/cli/vendor/gopkg.in/mgo.v2/stats.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/stats.go rename to cli/vendor/gopkg.in/mgo.v2/stats.go diff --git a/fn/vendor/gopkg.in/mgo.v2/suite_test.go b/cli/vendor/gopkg.in/mgo.v2/suite_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/suite_test.go rename to cli/vendor/gopkg.in/mgo.v2/suite_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/syscall_test.go b/cli/vendor/gopkg.in/mgo.v2/syscall_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/syscall_test.go rename to cli/vendor/gopkg.in/mgo.v2/syscall_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/syscall_windows_test.go b/cli/vendor/gopkg.in/mgo.v2/syscall_windows_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/syscall_windows_test.go rename to cli/vendor/gopkg.in/mgo.v2/syscall_windows_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/chaos.go b/cli/vendor/gopkg.in/mgo.v2/txn/chaos.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/chaos.go rename to cli/vendor/gopkg.in/mgo.v2/txn/chaos.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/debug.go b/cli/vendor/gopkg.in/mgo.v2/txn/debug.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/debug.go rename to cli/vendor/gopkg.in/mgo.v2/txn/debug.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/dockey_test.go b/cli/vendor/gopkg.in/mgo.v2/txn/dockey_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/dockey_test.go rename to cli/vendor/gopkg.in/mgo.v2/txn/dockey_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/flusher.go b/cli/vendor/gopkg.in/mgo.v2/txn/flusher.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/flusher.go rename to cli/vendor/gopkg.in/mgo.v2/txn/flusher.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/output.txt b/cli/vendor/gopkg.in/mgo.v2/txn/output.txt similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/output.txt rename to cli/vendor/gopkg.in/mgo.v2/txn/output.txt diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/sim_test.go b/cli/vendor/gopkg.in/mgo.v2/txn/sim_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/sim_test.go rename to cli/vendor/gopkg.in/mgo.v2/txn/sim_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/tarjan.go b/cli/vendor/gopkg.in/mgo.v2/txn/tarjan.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/tarjan.go rename to cli/vendor/gopkg.in/mgo.v2/txn/tarjan.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/tarjan_test.go b/cli/vendor/gopkg.in/mgo.v2/txn/tarjan_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/tarjan_test.go rename to cli/vendor/gopkg.in/mgo.v2/txn/tarjan_test.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/txn.go b/cli/vendor/gopkg.in/mgo.v2/txn/txn.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/txn.go rename to cli/vendor/gopkg.in/mgo.v2/txn/txn.go diff --git a/fn/vendor/gopkg.in/mgo.v2/txn/txn_test.go b/cli/vendor/gopkg.in/mgo.v2/txn/txn_test.go similarity index 100% rename from fn/vendor/gopkg.in/mgo.v2/txn/txn_test.go rename to cli/vendor/gopkg.in/mgo.v2/txn/txn_test.go diff --git a/fn/vendor/gopkg.in/yaml.v2/.travis.yml b/cli/vendor/gopkg.in/yaml.v2/.travis.yml similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/.travis.yml rename to cli/vendor/gopkg.in/yaml.v2/.travis.yml diff --git a/fn/vendor/gopkg.in/yaml.v2/LICENSE b/cli/vendor/gopkg.in/yaml.v2/LICENSE similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/LICENSE rename to cli/vendor/gopkg.in/yaml.v2/LICENSE diff --git a/fn/vendor/gopkg.in/yaml.v2/LICENSE.libyaml b/cli/vendor/gopkg.in/yaml.v2/LICENSE.libyaml similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/LICENSE.libyaml rename to cli/vendor/gopkg.in/yaml.v2/LICENSE.libyaml diff --git a/fn/vendor/gopkg.in/yaml.v2/README.md b/cli/vendor/gopkg.in/yaml.v2/README.md similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/README.md rename to cli/vendor/gopkg.in/yaml.v2/README.md diff --git a/fn/vendor/gopkg.in/yaml.v2/apic.go b/cli/vendor/gopkg.in/yaml.v2/apic.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/apic.go rename to cli/vendor/gopkg.in/yaml.v2/apic.go diff --git a/fn/vendor/gopkg.in/yaml.v2/decode.go b/cli/vendor/gopkg.in/yaml.v2/decode.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/decode.go rename to cli/vendor/gopkg.in/yaml.v2/decode.go diff --git a/fn/vendor/gopkg.in/yaml.v2/decode_test.go b/cli/vendor/gopkg.in/yaml.v2/decode_test.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/decode_test.go rename to cli/vendor/gopkg.in/yaml.v2/decode_test.go diff --git a/fn/vendor/gopkg.in/yaml.v2/emitterc.go b/cli/vendor/gopkg.in/yaml.v2/emitterc.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/emitterc.go rename to cli/vendor/gopkg.in/yaml.v2/emitterc.go diff --git a/fn/vendor/gopkg.in/yaml.v2/encode.go b/cli/vendor/gopkg.in/yaml.v2/encode.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/encode.go rename to cli/vendor/gopkg.in/yaml.v2/encode.go diff --git a/fn/vendor/gopkg.in/yaml.v2/encode_test.go b/cli/vendor/gopkg.in/yaml.v2/encode_test.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/encode_test.go rename to cli/vendor/gopkg.in/yaml.v2/encode_test.go diff --git a/fn/vendor/gopkg.in/yaml.v2/parserc.go b/cli/vendor/gopkg.in/yaml.v2/parserc.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/parserc.go rename to cli/vendor/gopkg.in/yaml.v2/parserc.go diff --git a/fn/vendor/gopkg.in/yaml.v2/readerc.go b/cli/vendor/gopkg.in/yaml.v2/readerc.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/readerc.go rename to cli/vendor/gopkg.in/yaml.v2/readerc.go diff --git a/fn/vendor/gopkg.in/yaml.v2/resolve.go b/cli/vendor/gopkg.in/yaml.v2/resolve.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/resolve.go rename to cli/vendor/gopkg.in/yaml.v2/resolve.go diff --git a/fn/vendor/gopkg.in/yaml.v2/scannerc.go b/cli/vendor/gopkg.in/yaml.v2/scannerc.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/scannerc.go rename to cli/vendor/gopkg.in/yaml.v2/scannerc.go diff --git a/fn/vendor/gopkg.in/yaml.v2/sorter.go b/cli/vendor/gopkg.in/yaml.v2/sorter.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/sorter.go rename to cli/vendor/gopkg.in/yaml.v2/sorter.go diff --git a/fn/vendor/gopkg.in/yaml.v2/suite_test.go b/cli/vendor/gopkg.in/yaml.v2/suite_test.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/suite_test.go rename to cli/vendor/gopkg.in/yaml.v2/suite_test.go diff --git a/fn/vendor/gopkg.in/yaml.v2/writerc.go b/cli/vendor/gopkg.in/yaml.v2/writerc.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/writerc.go rename to cli/vendor/gopkg.in/yaml.v2/writerc.go diff --git a/fn/vendor/gopkg.in/yaml.v2/yaml.go b/cli/vendor/gopkg.in/yaml.v2/yaml.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/yaml.go rename to cli/vendor/gopkg.in/yaml.v2/yaml.go diff --git a/fn/vendor/gopkg.in/yaml.v2/yamlh.go b/cli/vendor/gopkg.in/yaml.v2/yamlh.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/yamlh.go rename to cli/vendor/gopkg.in/yaml.v2/yamlh.go diff --git a/fn/vendor/gopkg.in/yaml.v2/yamlprivateh.go b/cli/vendor/gopkg.in/yaml.v2/yamlprivateh.go similarity index 100% rename from fn/vendor/gopkg.in/yaml.v2/yamlprivateh.go rename to cli/vendor/gopkg.in/yaml.v2/yamlprivateh.go diff --git a/fn/version.go b/cli/version.go similarity index 100% rename from fn/version.go rename to cli/version.go diff --git a/examples/blog/database/post.go b/examples/blog/database/post.go index 9737d05f9..2056a82c2 100644 --- a/examples/blog/database/post.go +++ b/examples/blog/database/post.go @@ -3,7 +3,7 @@ package database import ( "errors" - "gitlab-odx.oracle.com/odx/functions/examples/blog/models" + "github.com/fnproject/fn/examples/blog/models" "gopkg.in/mgo.v2" "gopkg.in/mgo.v2/bson" ) diff --git a/examples/blog/database/user.go b/examples/blog/database/user.go index 325e80dcf..d4d72a688 100644 --- a/examples/blog/database/user.go +++ b/examples/blog/database/user.go @@ -1,7 +1,7 @@ package database import ( - "gitlab-odx.oracle.com/odx/functions/examples/blog/models" + "github.com/fnproject/fn/examples/blog/models" "gopkg.in/mgo.v2" "gopkg.in/mgo.v2/bson" ) diff --git a/examples/blog/function.go b/examples/blog/function.go index 4d9d98a40..5cea7e631 100644 --- a/examples/blog/function.go +++ b/examples/blog/function.go @@ -5,9 +5,9 @@ import ( "fmt" "os" - "gitlab-odx.oracle.com/odx/functions/examples/blog/database" - "gitlab-odx.oracle.com/odx/functions/examples/blog/models" - "gitlab-odx.oracle.com/odx/functions/examples/blog/routes" + "github.com/fnproject/fn/examples/blog/database" + "github.com/fnproject/fn/examples/blog/models" + "github.com/fnproject/fn/examples/blog/routes" ) var noAuth = map[string]interface{}{} diff --git a/examples/blog/routes/post_create.go b/examples/blog/routes/post_create.go index a406d6467..fb4f6fad6 100644 --- a/examples/blog/routes/post_create.go +++ b/examples/blog/routes/post_create.go @@ -5,8 +5,8 @@ import ( "fmt" "os" - "gitlab-odx.oracle.com/odx/functions/examples/blog/database" - "gitlab-odx.oracle.com/odx/functions/examples/blog/models" + "github.com/fnproject/fn/examples/blog/database" + "github.com/fnproject/fn/examples/blog/models" ) func HandlePostCreate(db *database.Database, auth map[string]interface{}) { diff --git a/examples/blog/routes/post_list.go b/examples/blog/routes/post_list.go index 6cb627137..0a21badbf 100644 --- a/examples/blog/routes/post_list.go +++ b/examples/blog/routes/post_list.go @@ -1,7 +1,7 @@ package route import ( - "gitlab-odx.oracle.com/odx/functions/examples/blog/database" + "github.com/fnproject/fn/examples/blog/database" "gopkg.in/mgo.v2/bson" ) diff --git a/examples/blog/routes/post_read.go b/examples/blog/routes/post_read.go index 410d75535..a0fc80d52 100644 --- a/examples/blog/routes/post_read.go +++ b/examples/blog/routes/post_read.go @@ -3,7 +3,7 @@ package route import ( "os" - "gitlab-odx.oracle.com/odx/functions/examples/blog/database" + "github.com/fnproject/fn/examples/blog/database" ) func HandlePostRead(db *database.Database, auth map[string]interface{}) { diff --git a/examples/blog/routes/server.go b/examples/blog/routes/server.go index b4bf9b6da..f55553e07 100644 --- a/examples/blog/routes/server.go +++ b/examples/blog/routes/server.go @@ -8,8 +8,8 @@ import ( "time" "github.com/dgrijalva/jwt-go" - "gitlab-odx.oracle.com/odx/functions/examples/blog/database" - "gitlab-odx.oracle.com/odx/functions/examples/blog/models" + "github.com/fnproject/fn/examples/blog/database" + "github.com/fnproject/fn/examples/blog/models" "golang.org/x/crypto/bcrypt" ) diff --git a/examples/extensions/main.go b/examples/extensions/main.go index 14ac2d1a6..335434479 100644 --- a/examples/extensions/main.go +++ b/examples/extensions/main.go @@ -6,8 +6,8 @@ import ( "html" "net/http" - "gitlab-odx.oracle.com/odx/functions/api/models" - "gitlab-odx.oracle.com/odx/functions/api/server" + "github.com/fnproject/fn/api/models" + "github.com/fnproject/fn/api/server" ) func main() { diff --git a/examples/middleware/main.go b/examples/middleware/main.go index 413e6b3a6..962fe11e1 100644 --- a/examples/middleware/main.go +++ b/examples/middleware/main.go @@ -8,7 +8,7 @@ import ( "strings" "time" - "gitlab-odx.oracle.com/odx/functions/api/server" + "github.com/fnproject/fn/api/server" ) func main() { diff --git a/examples/tutorial/hello/go/usingdeps/glide.yaml b/examples/tutorial/hello/go/usingdeps/glide.yaml index 4b8f83454..28a0bdd79 100644 --- a/examples/tutorial/hello/go/usingdeps/glide.yaml +++ b/examples/tutorial/hello/go/usingdeps/glide.yaml @@ -1,3 +1,3 @@ -package: gitlab-odx.oracle.com/odx/functions/examples/tutorial/hello/go/usingdeps +package: github.com/fnproject/fn/examples/tutorial/hello/go/usingdeps import: - package: github.com/sirupsen/logrus diff --git a/fnlb/Makefile b/fnlb/Makefile index 89a092062..a2b25a958 100644 --- a/fnlb/Makefile +++ b/fnlb/Makefile @@ -6,8 +6,8 @@ build: docker-build: docker pull funcy/go:dev - docker run --rm -v ${GOPATH}/src/gitlab-odx.oracle.com/odx/functions:/go/src/gitlab-odx.oracle.com/odx/functions \ - -w /go/src/gitlab-odx.oracle.com/odx/functions/fnlb funcy/go:dev go build -o fnlb-alpine + docker run --rm -v ${GOPATH}/src/github.com/fnproject/fn:/go/src/github.com/fnproject/fn \ + -w /go/src/github.com/fnproject/fn/clilb funcy/go:dev go build -o fnlb-alpine docker build --build-arg HTTP_PROXY -t funcy/fnlb:latest . all: build diff --git a/fnlb/main.go b/fnlb/main.go index 652f41f8b..7b0a702fa 100644 --- a/fnlb/main.go +++ b/fnlb/main.go @@ -14,7 +14,7 @@ import ( "time" "github.com/Sirupsen/logrus" - "gitlab-odx.oracle.com/odx/functions/fnlb/lb" + "github.com/fnproject/fn/clilb/lb" ) const VERSION = "0.0.1" diff --git a/glide.yaml b/glide.yaml index 7776b5e92..c7a2e957c 100644 --- a/glide.yaml +++ b/glide.yaml @@ -1,4 +1,4 @@ -package: gitlab-odx.oracle.com/odx/functions +package: github.com/fnproject/fn excludeDirs: - fn import: diff --git a/main.go b/main.go index cc6ec108e..c481f6ecb 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "context" - "gitlab-odx.oracle.com/odx/functions/api/server" + "github.com/fnproject/fn/api/server" ) func main() { diff --git a/test.sh b/test.sh index 9615e3466..00d091e13 100755 --- a/test.sh +++ b/test.sh @@ -36,9 +36,9 @@ container_ip) esac go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v fn| grep -v tmp/go/src) -# go test -v gitlab-odx.oracle.com/odx/functions/api/runner/drivers/docker +# go test -v github.com/fnproject/fn/api/runner/drivers/docker -cd fn && make build && make test +cd cli && make build && make test # TODO: should we install fn here to use throughout? export FN="$(pwd)/fn" cd .. diff --git a/test/fn-api-tests/exec_test.go b/test/fn-api-tests/exec_test.go index 5bfa1365e..766efcc9d 100644 --- a/test/fn-api-tests/exec_test.go +++ b/test/fn-api-tests/exec_test.go @@ -359,7 +359,7 @@ func TestRouteExecutions(t *testing.T) { t.Run("exec-oversized-log-test", func(t *testing.T) { t.Parallel() - t.Skip("Skipped until fix for https://gitlab-odx.oracle.com/odx/functions/issues/86.") + t.Skip("Skipped until fix for https://github.com/fnproject/fn/issues/86.") s := SetupDefaultSuite() routePath := "/log" diff --git a/test/fn-api-tests/routes_test.go b/test/fn-api-tests/routes_test.go index 01d7a5bee..ea765a831 100644 --- a/test/fn-api-tests/routes_test.go +++ b/test/fn-api-tests/routes_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/funcy/functions_go/models" - "gitlab-odx.oracle.com/odx/functions/api/id" + "github.com/fnproject/fn/api/id" ) func TestRoutes(t *testing.T) { diff --git a/test/fn-api-tests/utils.go b/test/fn-api-tests/utils.go index 4e00c9545..646982427 100644 --- a/test/fn-api-tests/utils.go +++ b/test/fn-api-tests/utils.go @@ -6,7 +6,7 @@ import ( "sync" "time" - "gitlab-odx.oracle.com/odx/functions/api/server" + "github.com/fnproject/fn/api/server" "fmt" "io"