├── .all-contributorsrc ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── aur.yml │ ├── clean_artifacts.yml │ ├── gh-pages.yml │ ├── goreleaser.yml │ ├── lint.yml │ └── tests.yml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cmd └── hostctl │ ├── actions │ ├── add_domains.go │ ├── add_domains_test.go │ ├── add_replace.go │ ├── add_replace_test.go │ ├── backup.go │ ├── backup_test.go │ ├── completion.go │ ├── enable_disable.go │ ├── enable_disable_test.go │ ├── errors.go │ ├── gen_md_docs.go │ ├── helpers.go │ ├── helpers_test.go │ ├── info.go │ ├── info_test.go │ ├── integration_runner_test.go │ ├── list.go │ ├── list_test.go │ ├── post_action.go │ ├── post_action_test.go │ ├── remove.go │ ├── remove_domains.go │ ├── remove_domains_test.go │ ├── remove_test.go │ ├── restore.go │ ├── restore_test.go │ ├── root.go │ ├── status.go │ ├── status_test.go │ ├── sync.go │ ├── sync_docker.go │ ├── sync_docker_compose.go │ ├── sync_docker_compose_test.go │ ├── sync_docker_test.go │ ├── toggle.go │ └── toggle_test.go │ ├── doc.go │ └── main.go ├── docs ├── hostctl.gif └── hostctl.png ├── go.mod ├── go.sum ├── hostctl.json ├── pkg ├── docker │ ├── compose.go │ ├── compose_test.go │ ├── docker.go │ └── docker_test.go ├── file │ ├── add.go │ ├── add_test.go │ ├── enable_disable.go │ ├── enable_disable_test.go │ ├── file.go │ ├── file_backup.go │ ├── file_backup_test.go │ ├── file_restore.go │ ├── file_restore_test.go │ ├── file_test.go │ ├── helpers_test.go │ ├── list.go │ ├── list_test.go │ ├── merge.go │ ├── merge_test.go │ ├── remove.go │ ├── remove_test.go │ ├── replace.go │ ├── replace_test.go │ ├── toggle.go │ ├── toggle_test.go │ └── types.go ├── parser │ ├── docker.go │ ├── docker_test.go │ ├── parser.go │ └── parser_test.go ├── render │ ├── json.go │ ├── json_test.go │ ├── markdown.go │ ├── markdown_test.go │ ├── raw.go │ ├── raw_test.go │ ├── table.go │ └── table_test.go └── types │ ├── Route.go │ ├── errors.go │ ├── profile.go │ ├── profile_test.go │ ├── renderer.go │ └── types.go └── sonar-project.properties /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/aur.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/workflows/aur.yml -------------------------------------------------------------------------------- /.github/workflows/clean_artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/workflows/clean_artifacts.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/README.md -------------------------------------------------------------------------------- /cmd/hostctl/actions/add_domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/add_domains.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/add_domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/add_domains_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/add_replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/add_replace.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/add_replace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/add_replace_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/backup.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/backup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/backup_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/completion.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/enable_disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/enable_disable.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/enable_disable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/enable_disable_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/errors.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/gen_md_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/gen_md_docs.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/helpers.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/helpers_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/info.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/info_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/info_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/integration_runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/integration_runner_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/list.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/list_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/post_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/post_action.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/post_action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/post_action_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/remove.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/remove_domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/remove_domains.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/remove_domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/remove_domains_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/remove_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/restore.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/restore_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/root.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/status.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/status_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/sync.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/sync_docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/sync_docker.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/sync_docker_compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/sync_docker_compose.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/sync_docker_compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/sync_docker_compose_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/sync_docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/sync_docker_test.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/toggle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/toggle.go -------------------------------------------------------------------------------- /cmd/hostctl/actions/toggle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/actions/toggle_test.go -------------------------------------------------------------------------------- /cmd/hostctl/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/doc.go -------------------------------------------------------------------------------- /cmd/hostctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/cmd/hostctl/main.go -------------------------------------------------------------------------------- /docs/hostctl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/docs/hostctl.gif -------------------------------------------------------------------------------- /docs/hostctl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/docs/hostctl.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/go.sum -------------------------------------------------------------------------------- /hostctl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/hostctl.json -------------------------------------------------------------------------------- /pkg/docker/compose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/docker/compose.go -------------------------------------------------------------------------------- /pkg/docker/compose_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/docker/compose_test.go -------------------------------------------------------------------------------- /pkg/docker/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/docker/docker.go -------------------------------------------------------------------------------- /pkg/docker/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/docker/docker_test.go -------------------------------------------------------------------------------- /pkg/file/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/add.go -------------------------------------------------------------------------------- /pkg/file/add_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/add_test.go -------------------------------------------------------------------------------- /pkg/file/enable_disable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/enable_disable.go -------------------------------------------------------------------------------- /pkg/file/enable_disable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/enable_disable_test.go -------------------------------------------------------------------------------- /pkg/file/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/file.go -------------------------------------------------------------------------------- /pkg/file/file_backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/file_backup.go -------------------------------------------------------------------------------- /pkg/file/file_backup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/file_backup_test.go -------------------------------------------------------------------------------- /pkg/file/file_restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/file_restore.go -------------------------------------------------------------------------------- /pkg/file/file_restore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/file_restore_test.go -------------------------------------------------------------------------------- /pkg/file/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/file_test.go -------------------------------------------------------------------------------- /pkg/file/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/helpers_test.go -------------------------------------------------------------------------------- /pkg/file/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/list.go -------------------------------------------------------------------------------- /pkg/file/list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/list_test.go -------------------------------------------------------------------------------- /pkg/file/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/merge.go -------------------------------------------------------------------------------- /pkg/file/merge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/merge_test.go -------------------------------------------------------------------------------- /pkg/file/remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/remove.go -------------------------------------------------------------------------------- /pkg/file/remove_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/remove_test.go -------------------------------------------------------------------------------- /pkg/file/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/replace.go -------------------------------------------------------------------------------- /pkg/file/replace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/replace_test.go -------------------------------------------------------------------------------- /pkg/file/toggle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/toggle.go -------------------------------------------------------------------------------- /pkg/file/toggle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/toggle_test.go -------------------------------------------------------------------------------- /pkg/file/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/file/types.go -------------------------------------------------------------------------------- /pkg/parser/docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/parser/docker.go -------------------------------------------------------------------------------- /pkg/parser/docker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/parser/docker_test.go -------------------------------------------------------------------------------- /pkg/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/parser/parser.go -------------------------------------------------------------------------------- /pkg/parser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/parser/parser_test.go -------------------------------------------------------------------------------- /pkg/render/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/json.go -------------------------------------------------------------------------------- /pkg/render/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/json_test.go -------------------------------------------------------------------------------- /pkg/render/markdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/markdown.go -------------------------------------------------------------------------------- /pkg/render/markdown_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/markdown_test.go -------------------------------------------------------------------------------- /pkg/render/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/raw.go -------------------------------------------------------------------------------- /pkg/render/raw_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/raw_test.go -------------------------------------------------------------------------------- /pkg/render/table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/table.go -------------------------------------------------------------------------------- /pkg/render/table_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/render/table_test.go -------------------------------------------------------------------------------- /pkg/types/Route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/types/Route.go -------------------------------------------------------------------------------- /pkg/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/types/errors.go -------------------------------------------------------------------------------- /pkg/types/profile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/types/profile.go -------------------------------------------------------------------------------- /pkg/types/profile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/types/profile_test.go -------------------------------------------------------------------------------- /pkg/types/renderer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/types/renderer.go -------------------------------------------------------------------------------- /pkg/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/pkg/types/types.go -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guumaster/hostctl/HEAD/sonar-project.properties --------------------------------------------------------------------------------