├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── docs_issue.yml │ ├── feature_request.yml │ └── request_help.yml └── workflows │ └── release.yaml ├── .gitignore ├── .golangci.yml ├── .goreleaser.yaml ├── README.md ├── app ├── .gitignore └── apserver │ ├── .gitignore │ ├── apserver.go │ ├── customized.bak │ ├── custom.yml │ ├── favicon.jpg │ ├── logo-auth.jpg │ └── logo.jpg │ ├── driver.go │ ├── embed_plugin.go │ ├── log.go │ ├── main.go │ ├── services.go │ └── version │ ├── dashboard.go │ └── version.go ├── cache ├── common-cache-mock │ └── common-cache_mock.go ├── common.go ├── init.go ├── lock.go ├── locker.go └── redis_cache.go ├── client ├── v1 │ ├── cert_api.go │ ├── client.go │ ├── client_test.go │ ├── extender_api.go │ ├── gm_cert_api.go │ ├── http_request.go │ ├── initialize │ │ └── plugin │ │ │ ├── apinto_plugin.yml │ │ │ ├── black_extended.go │ │ │ ├── black_extended.yml │ │ │ └── global.go │ ├── model.go │ ├── plugin_api.go │ ├── profession.go │ ├── proxy.go │ ├── service.go │ ├── strategy.go │ └── variable_api.go └── v2 │ ├── app.go │ ├── client.go │ ├── client_test.go │ ├── cluster.go │ ├── manager.go │ ├── status.go │ └── worker.go ├── common ├── aes.go ├── base64.go ├── cert.go ├── compress.go ├── const.go ├── contxt.go ├── diff.go ├── email.go ├── email_test.go ├── error.go ├── float64.go ├── gzip-static │ ├── gzip.go │ ├── gzip_test.go │ ├── handler.go │ └── options.go ├── http.go ├── interface_to_all.go ├── json.go ├── jwt.go ├── map.go ├── md5.go ├── panic.go ├── path.go ├── pool.go ├── rand.go ├── regexp.go ├── restful │ ├── builder.go │ ├── data.go │ ├── path.go │ ├── path_test.go │ ├── request-call.go │ ├── request-oneway.go │ ├── request-rpc.go │ ├── request-simple.go │ ├── request.go │ ├── restful.go │ └── restful_test.go ├── schema │ ├── README.md │ ├── schema.go │ └── schema_test.go ├── set.go ├── slice.go ├── slice_to_all.go ├── slices.go ├── time.go ├── webhook.go ├── webhook_test.go └── yml.go ├── config ├── config.go ├── dir.go ├── redis.go ├── store-mysql.go └── store.go ├── controller ├── .gitignore ├── audit.go ├── filters.go ├── gin_context.go ├── result.go └── users │ └── user.go ├── custom ├── custom.go └── default.go ├── driver └── driver_manager.go ├── enum ├── api_manager.go ├── change_opt_type.go ├── cluster_config.go ├── cluster_node_status.go ├── cluster_plugin.go ├── cluster_status.go ├── common.go ├── keyword.go ├── online_status_type.go ├── publish_opt.go ├── publish_type.go └── variable_usage_status_type.go ├── filter └── filter.go ├── frontend ├── .eslintrc.js ├── .gitignore ├── .npmrc ├── .prettierrc.json ├── .yarnrc ├── README.md ├── angular.json ├── assets.go ├── frontend.go ├── jest.config.ts ├── logo │ ├── favicon-pro.ico │ ├── favicon.ico │ ├── logo-auth.svg │ ├── logo-pro.svg │ └── logo.svg ├── package.json ├── projects │ ├── apinto-auth │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── component │ │ │ │ │ └── auth-button │ │ │ │ │ │ ├── auth-button.component.ts │ │ │ │ │ │ └── auth-button.module.ts │ │ │ │ ├── constant │ │ │ │ │ └── app.config.ts │ │ │ │ ├── directive │ │ │ │ │ ├── directive.module.ts │ │ │ │ │ └── user-access.directive.ts │ │ │ │ ├── layout │ │ │ │ │ ├── auth-info │ │ │ │ │ │ ├── auth-info-routing.module.ts │ │ │ │ │ │ ├── auth-info.component.html │ │ │ │ │ │ ├── auth-info.component.ts │ │ │ │ │ │ └── auth-info.module.ts │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── activation │ │ │ │ │ │ │ ├── activation.component.html │ │ │ │ │ │ │ └── activation.component.ts │ │ │ │ │ │ ├── auth.module.ts │ │ │ │ │ │ ├── info │ │ │ │ │ │ │ └── detail │ │ │ │ │ │ │ │ └── detail.component.ts │ │ │ │ │ │ └── update │ │ │ │ │ │ │ └── update.component.ts │ │ │ │ │ └── bootstrap │ │ │ │ │ │ └── bootstrap.ts │ │ │ │ └── service │ │ │ │ │ ├── api.service.ts │ │ │ │ │ ├── base-info.service.ts │ │ │ │ │ └── module-federation.service.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ └── apinto-auth.svg │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── styles.scss │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ ├── webpack.config.ts │ │ └── webpack.prod.config.ts │ ├── core │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── component │ │ │ │ │ ├── api-method-tag │ │ │ │ │ │ └── api-method-tag.component.ts │ │ │ │ │ ├── card-list │ │ │ │ │ │ └── card-list.component.ts │ │ │ │ │ ├── component.module.ts │ │ │ │ │ ├── copy-addr-list │ │ │ │ │ │ └── copy-addr-list.component.ts │ │ │ │ │ ├── dynamic-component │ │ │ │ │ │ ├── dynamic-component.component.html │ │ │ │ │ │ └── dynamic-component.component.ts │ │ │ │ │ ├── editable-env-table │ │ │ │ │ │ ├── editable-env-table.component.html │ │ │ │ │ │ ├── editable-env-table.component.ts │ │ │ │ │ │ └── editable-env-table.service.ts │ │ │ │ │ ├── eo-ng-search-input-group │ │ │ │ │ │ └── eo-ng-search-input-group.component.ts │ │ │ │ │ ├── formily2-react │ │ │ │ │ │ ├── CustomReactComponentWrapper.tsx │ │ │ │ │ │ ├── IntelligentPluginEditComponent.tsx │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ ├── array-item-blank │ │ │ │ │ │ │ │ ├── ArrayItemBlankComponent.tsx │ │ │ │ │ │ │ │ ├── ArrayItemBlankWrapperComponent.tsx │ │ │ │ │ │ │ │ └── test-blank.json │ │ │ │ │ │ │ ├── codebox │ │ │ │ │ │ │ │ ├── CustomCodeboxComponent.tsx │ │ │ │ │ │ │ │ └── CustomCodeboxComponentWrapper.tsx │ │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ │ ├── CustomDialogComponent.tsx │ │ │ │ │ │ │ │ └── CustomDialogComponentWrapper.tsx │ │ │ │ │ │ │ ├── editable-env-table │ │ │ │ │ │ │ │ ├── CustomEnvVariableComponent.tsx │ │ │ │ │ │ │ │ ├── CustomEnvVariableComponentWrapper.tsx │ │ │ │ │ │ │ │ └── CustomEnvVariableTableComponent.tsx │ │ │ │ │ │ │ └── simple-map │ │ │ │ │ │ │ │ ├── SimpleMapComponent.tsx │ │ │ │ │ │ │ │ └── SimpleMapComponentWrapper.tsx │ │ │ │ │ │ └── formily2-react.component.ts │ │ │ │ │ ├── iframe │ │ │ │ │ │ ├── iframe.component.html │ │ │ │ │ │ └── iframe.component.ts │ │ │ │ │ ├── intelligent-plugin │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── intelligent-plugin.service.ts │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── layout.component.html │ │ │ │ │ │ │ └── layout.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── publish │ │ │ │ │ │ │ ├── publish.component.html │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── match-form │ │ │ │ │ │ └── match-form.component.ts │ │ │ │ │ ├── match-table │ │ │ │ │ │ └── match-table.component.ts │ │ │ │ │ ├── plugin-config-modal │ │ │ │ │ │ └── plugin-config-modal.component.ts │ │ │ │ │ └── table-status-td │ │ │ │ │ │ └── table-status-td.component.ts │ │ │ │ ├── constant │ │ │ │ │ ├── app.config.ts │ │ │ │ │ ├── conf.ts │ │ │ │ │ ├── eo-ng-validator.ts │ │ │ │ │ ├── form.ts │ │ │ │ │ ├── spec-test.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── custom-preloading-strategy.ts │ │ │ │ ├── directive │ │ │ │ │ ├── auto-focus.directive.ts │ │ │ │ │ ├── directive.module.ts │ │ │ │ │ ├── eo-ng-scroll-dom.directive.ts │ │ │ │ │ ├── row-expand-button.directive.ts │ │ │ │ │ ├── tree-drag.directive.ts │ │ │ │ │ └── user-access.directive.ts │ │ │ │ ├── layout │ │ │ │ │ ├── api │ │ │ │ │ │ ├── api-list │ │ │ │ │ │ │ ├── api-list.component.ts │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── http-create │ │ │ │ │ │ │ │ │ ├── http-create.component.spec.ts │ │ │ │ │ │ │ │ │ └── http-create.component.ts │ │ │ │ │ │ │ │ └── websocket-create │ │ │ │ │ │ │ │ │ ├── websocket-create.component.html │ │ │ │ │ │ │ │ │ ├── websocket-create.component.spec.ts │ │ │ │ │ │ │ │ │ └── websocket-create.component.ts │ │ │ │ │ │ │ ├── group │ │ │ │ │ │ │ │ ├── edit-group │ │ │ │ │ │ │ │ │ ├── edit-group.component.spec.ts │ │ │ │ │ │ │ │ │ └── edit-group.component.ts │ │ │ │ │ │ │ │ ├── group.component.html │ │ │ │ │ │ │ │ ├── group.component.spec.ts │ │ │ │ │ │ │ │ └── group.component.ts │ │ │ │ │ │ │ ├── import │ │ │ │ │ │ │ │ ├── import.component.html │ │ │ │ │ │ │ │ ├── import.component.spec.ts │ │ │ │ │ │ │ │ └── import.component.ts │ │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ │ ├── list.component.spec.ts │ │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ │ ├── http-message │ │ │ │ │ │ │ │ │ └── http-message.component.ts │ │ │ │ │ │ │ │ ├── message.component.spec.ts │ │ │ │ │ │ │ │ ├── message.component.ts │ │ │ │ │ │ │ │ └── websocket-message │ │ │ │ │ │ │ │ │ └── websocket-message.component.ts │ │ │ │ │ │ │ ├── proxy │ │ │ │ │ │ │ │ ├── proxy.component.html │ │ │ │ │ │ │ │ ├── proxy.component.spec.ts │ │ │ │ │ │ │ │ └── proxy.component.ts │ │ │ │ │ │ │ └── publish │ │ │ │ │ │ │ │ ├── batch │ │ │ │ │ │ │ │ ├── choose-cluster.component.html │ │ │ │ │ │ │ │ ├── choose-cluster.component.ts │ │ │ │ │ │ │ │ ├── result.component.html │ │ │ │ │ │ │ │ └── result.component.ts │ │ │ │ │ │ │ │ └── single │ │ │ │ │ │ │ │ ├── publish.component.html │ │ │ │ │ │ │ │ ├── publish.component.spec.ts │ │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ ├── api-routing.module.ts │ │ │ │ │ │ ├── api.module.ts │ │ │ │ │ │ ├── router.service.ts │ │ │ │ │ │ ├── router │ │ │ │ │ │ │ └── router.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── application │ │ │ │ │ │ ├── application-routing.module.ts │ │ │ │ │ │ ├── application.component.ts │ │ │ │ │ │ ├── application.module.ts │ │ │ │ │ │ ├── application.service.ts │ │ │ │ │ │ ├── authentication │ │ │ │ │ │ │ ├── authentication.component.html │ │ │ │ │ │ │ ├── authentication.component.ts │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ └── view.component.ts │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ ├── content.component.html │ │ │ │ │ │ │ └── content.component.ts │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── extra │ │ │ │ │ │ │ ├── extra.component.html │ │ │ │ │ │ │ ├── extra.component.ts │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── message.component.html │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── publish │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── audit-log │ │ │ │ │ │ ├── audit-log-routing.module.ts │ │ │ │ │ │ ├── audit-log.component.ts │ │ │ │ │ │ ├── audit-log.module.ts │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── detail.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── basic-layout │ │ │ │ │ │ ├── basic-layout.component.html │ │ │ │ │ │ ├── basic-layout.component.scss │ │ │ │ │ │ └── basic-layout.component.ts │ │ │ │ │ ├── deploy-cluster │ │ │ │ │ │ ├── cert │ │ │ │ │ │ │ ├── cert.component.html │ │ │ │ │ │ │ ├── cert.component.ts │ │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ │ ├── content.component.html │ │ │ │ │ │ │ │ └── content.component.ts │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ ├── cluster.component.html │ │ │ │ │ │ ├── cluster.component.ts │ │ │ │ │ │ ├── deploy-cluster-routing.module.ts │ │ │ │ │ │ ├── deploy-cluster.module.ts │ │ │ │ │ │ ├── deploy.service.ts │ │ │ │ │ │ ├── environment │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ │ │ └── update │ │ │ │ │ │ │ │ │ └── update.component.ts │ │ │ │ │ │ │ ├── environment.component.html │ │ │ │ │ │ │ ├── environment.component.ts │ │ │ │ │ │ │ ├── history │ │ │ │ │ │ │ │ ├── change │ │ │ │ │ │ │ │ │ └── change.component.ts │ │ │ │ │ │ │ │ └── publish │ │ │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ │ └── publish │ │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── message.component.html │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── nodes │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ │ ├── nodes.component.html │ │ │ │ │ │ │ └── nodes.component.ts │ │ │ │ │ │ ├── plugin │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ │ ├── config.component.html │ │ │ │ │ │ │ │ └── config.component.ts │ │ │ │ │ │ │ ├── history │ │ │ │ │ │ │ │ ├── change │ │ │ │ │ │ │ │ │ ├── change.component.html │ │ │ │ │ │ │ │ │ └── change.component.ts │ │ │ │ │ │ │ │ └── publish │ │ │ │ │ │ │ │ │ ├── publish.component.html │ │ │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ │ ├── plugin.component.html │ │ │ │ │ │ │ ├── plugin.component.ts │ │ │ │ │ │ │ └── publish │ │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ ├── smcert │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ │ ├── smcert.component.html │ │ │ │ │ │ │ └── smcert.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── dynamic-demo │ │ │ │ │ │ └── dynamic-demo.component.ts │ │ │ │ │ ├── global-env-var │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ └── detail.component.ts │ │ │ │ │ │ ├── environment.component.ts │ │ │ │ │ │ ├── global-env-var-routing.module.ts │ │ │ │ │ │ ├── global-env-var.module.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── guide │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ ├── guide.component.html │ │ │ │ │ │ └── guide.component.ts │ │ │ │ │ ├── intelligent-plugin │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── intelligent-plugin-routing.module.ts │ │ │ │ │ │ ├── intelligent-plugin.component.ts │ │ │ │ │ │ ├── intelligent-plugin.module.ts │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ └── layout.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ └── publish │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ ├── layout.module.ts │ │ │ │ │ ├── local-plugin │ │ │ │ │ │ └── local-plugin.component.ts │ │ │ │ │ ├── log-retrieval │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ ├── log-retrieval-routing.module.ts │ │ │ │ │ │ ├── log-retrieval.component.html │ │ │ │ │ │ ├── log-retrieval.component.ts │ │ │ │ │ │ ├── log-retrieval.module.ts │ │ │ │ │ │ ├── tail-log │ │ │ │ │ │ │ └── tail-log.component.ts │ │ │ │ │ │ └── type.ts │ │ │ │ │ ├── login │ │ │ │ │ │ ├── login.component.html │ │ │ │ │ │ ├── login.component.scss │ │ │ │ │ │ ├── login.component.ts │ │ │ │ │ │ ├── logo │ │ │ │ │ │ │ ├── logo.component.html │ │ │ │ │ │ │ ├── logo.component.scss │ │ │ │ │ │ │ └── logo.component.ts │ │ │ │ │ │ └── password │ │ │ │ │ │ │ ├── password.component.html │ │ │ │ │ │ │ ├── password.component.scss │ │ │ │ │ │ │ └── password.component.ts │ │ │ │ │ ├── node-plugin │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── deploy-plugin.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── node-plugin-routing.module.ts │ │ │ │ │ │ ├── node-plugin.module.ts │ │ │ │ │ │ ├── nodePlugin.service.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── not-found-page │ │ │ │ │ │ └── not-found-page.component.ts │ │ │ │ │ ├── open-api │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── external-app.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── open-api-routing.module.ts │ │ │ │ │ │ └── open-api.module.ts │ │ │ │ │ ├── plugin-template │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ ├── content │ │ │ │ │ │ │ └── content.component.ts │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── plugin-template-routing.module.ts │ │ │ │ │ │ ├── plugin-template.module.ts │ │ │ │ │ │ ├── plugin-template.service.ts │ │ │ │ │ │ ├── plugin.component.ts │ │ │ │ │ │ ├── publish │ │ │ │ │ │ │ ├── publish.component.html │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── plugin-wrapper │ │ │ │ │ │ └── plugin-wrapper.component.ts │ │ │ │ │ ├── plugin │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ ├── config.component.html │ │ │ │ │ │ │ └── config.component.ts │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ ├── eo-ng-plugin.service.ts │ │ │ │ │ │ ├── group │ │ │ │ │ │ │ ├── group.component.html │ │ │ │ │ │ │ └── group.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── message.component.scss │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── plugin-management-routing.module.ts │ │ │ │ │ │ ├── plugin-management.component.ts │ │ │ │ │ │ ├── plugin-management.module.ts │ │ │ │ │ │ └── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── redirect-page │ │ │ │ │ │ └── redirect-page.component.ts │ │ │ │ │ ├── remote-plugin │ │ │ │ │ │ └── remote-plugin.component.ts │ │ │ │ │ ├── router-layout │ │ │ │ │ │ └── router-layout.component.ts │ │ │ │ │ ├── serv-governance │ │ │ │ │ │ ├── cache-strategy │ │ │ │ │ │ │ ├── cache-strategy-routing.module.ts │ │ │ │ │ │ │ ├── cache-strategy.module.ts │ │ │ │ │ │ │ ├── cache.component.ts │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ └── message │ │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── data-mask │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ ├── data-mask-routing.module.ts │ │ │ │ │ │ │ ├── data-mask.component.ts │ │ │ │ │ │ │ ├── data-mask.module.ts │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ │ ├── rule-form │ │ │ │ │ │ │ │ ├── rule-form.component.html │ │ │ │ │ │ │ │ └── rule-form.component.ts │ │ │ │ │ │ │ └── rule-table │ │ │ │ │ │ │ │ └── rule-table.component.ts │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── footer │ │ │ │ │ │ │ │ ├── footer.component.html │ │ │ │ │ │ │ │ └── footer.component.ts │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ │ ├── form.component.html │ │ │ │ │ │ │ │ └── form.component.ts │ │ │ │ │ │ │ ├── serv-governance-filter.service.ts │ │ │ │ │ │ │ └── table │ │ │ │ │ │ │ │ ├── table.component.html │ │ │ │ │ │ │ │ └── table.component.ts │ │ │ │ │ │ ├── fuse-strategy │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ ├── fuse-strategy-routing.module.ts │ │ │ │ │ │ │ ├── fuse-strategy.module.ts │ │ │ │ │ │ │ ├── fuse.component.ts │ │ │ │ │ │ │ └── message │ │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── grey-strategy │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ ├── grey-strategy-routing.module.ts │ │ │ │ │ │ │ ├── grey-strategy.module.ts │ │ │ │ │ │ │ ├── grey.component.ts │ │ │ │ │ │ │ └── message │ │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ ├── group │ │ │ │ │ │ │ ├── group.component.html │ │ │ │ │ │ │ └── group.component.ts │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ │ └── list.component.ts │ │ │ │ │ │ ├── publish │ │ │ │ │ │ │ └── publish.component.ts │ │ │ │ │ │ ├── response-form │ │ │ │ │ │ │ ├── response-form.component.html │ │ │ │ │ │ │ └── response-form.component.ts │ │ │ │ │ │ ├── serv-governance.module.ts │ │ │ │ │ │ ├── service-governance.service.ts │ │ │ │ │ │ ├── traffic-strategy │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ │ ├── message.component.html │ │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ │ ├── traffic-strategy-routing.module.ts │ │ │ │ │ │ │ ├── traffic-strategy.module.ts │ │ │ │ │ │ │ └── traffic.component.ts │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ └── visit-strategy │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ ├── create.component.html │ │ │ │ │ │ │ └── create.component.ts │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ └── message.component.ts │ │ │ │ │ │ │ ├── visit-strategy-routing.module.ts │ │ │ │ │ │ │ ├── visit-strategy.module.ts │ │ │ │ │ │ │ └── visit.component.ts │ │ │ │ │ └── system │ │ │ │ │ │ ├── email │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── config.component.html │ │ │ │ │ │ │ └── config.component.ts │ │ │ │ │ │ ├── types │ │ │ │ │ │ ├── conf.ts │ │ │ │ │ │ └── type.ts │ │ │ │ │ │ └── webhook │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── config.component.html │ │ │ │ │ │ └── config.component.ts │ │ │ │ │ │ └── list │ │ │ │ │ │ ├── list.component.html │ │ │ │ │ │ └── list.component.ts │ │ │ │ ├── pipe │ │ │ │ │ ├── change-word-color.pipe.ts │ │ │ │ │ └── safe.pipe.ts │ │ │ │ ├── plugin-mock.ts │ │ │ │ ├── service │ │ │ │ │ ├── api.service.ts │ │ │ │ │ ├── as-iframe.service.ts │ │ │ │ │ ├── base-info.service.ts │ │ │ │ │ ├── crypto.service.ts │ │ │ │ │ ├── eo-ng-json.service.ts │ │ │ │ │ ├── eo-ng-message.service.ts │ │ │ │ │ ├── eo-ng-navigation.service.ts │ │ │ │ │ ├── http-interceptors │ │ │ │ │ │ ├── error.interceptor.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── iframe-http.service.ts │ │ │ │ │ ├── platform-provider.service.ts │ │ │ │ │ ├── plugin-event-hub.service.ts │ │ │ │ │ ├── plugin-loader.service.ts │ │ │ │ │ ├── plugin-provider.service.ts │ │ │ │ │ ├── plugin-slot-hub.service.ts │ │ │ │ │ ├── publish-fail.service.ts │ │ │ │ │ ├── redirect-page.service.ts │ │ │ │ │ └── websocket.service.ts │ │ │ │ └── util │ │ │ │ │ ├── module-federation.ts │ │ │ │ │ ├── plugin-driver.ts │ │ │ │ │ └── plugin-lifecycle.guard.ts │ │ │ ├── assets │ │ │ │ ├── .gitkeep │ │ │ │ ├── README.md │ │ │ │ ├── apinto-auth.svg │ │ │ │ ├── apinto-pro.svg │ │ │ │ ├── apinto.svg │ │ │ │ ├── avatar.svg │ │ │ │ ├── default-guide-icon.png │ │ │ │ ├── default-navigation-icon.png │ │ │ │ ├── default-plugin-icon.svg │ │ │ │ ├── favicon-pro.ico │ │ │ │ ├── favicon.ico │ │ │ │ ├── guide.jpg │ │ │ │ ├── iconpark-apinto.js │ │ │ │ ├── iconpark.js │ │ │ │ ├── logo │ │ │ │ │ ├── logo_dark.png │ │ │ │ │ └── logo_light.png │ │ │ │ ├── no-access.svg │ │ │ │ ├── side_bg.jpg │ │ │ │ └── theme │ │ │ │ │ ├── dark.json │ │ │ │ │ └── light.json │ │ │ ├── bootstrap.ts │ │ │ ├── environments │ │ │ │ ├── basic.ts │ │ │ │ ├── environment.business.prod.ts │ │ │ │ ├── environment.business.ts │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── favicon.ico │ │ │ ├── form.style.scss │ │ │ ├── formily.style.scss │ │ │ ├── index.html │ │ │ ├── input.style.scss │ │ │ ├── layout.style.scss │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── select.style.scss │ │ │ ├── styles.scss │ │ │ ├── table.style.scss │ │ │ └── variables.css │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ ├── webpack.config.ts │ │ └── webpack.prod.config.ts │ └── eo-ng-apinto-table │ │ ├── README.md │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── src │ │ ├── lib │ │ │ ├── eo-ng-apinto-table.module.ts │ │ │ ├── table │ │ │ │ ├── table.component.html │ │ │ │ └── table.component.ts │ │ │ └── types.ts │ │ └── public-api.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ ├── tsconfig.lib.prod.json │ │ └── tsconfig.spec.json ├── proxy.config.demo.json ├── proxy.config.json ├── tailwind.config.js ├── test │ └── setup-jest.ts ├── tool │ └── replaceCssVariable.js ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json ├── go.mod ├── go.sum ├── grpc-service ├── api.pb.go ├── api.proto ├── api_grpc.pb.go ├── gen.go ├── infos.pb.go ├── infos.proto ├── infos_grpc.pb.go ├── notice_send.pb.go ├── notice_send.proto └── notice_send_grpc.pb.go ├── initialize ├── inert │ └── frontend.go ├── navigation │ ├── navigation.go │ └── navigation.yml ├── plugin-group │ ├── plugin_group.go │ └── plugin_group.yml └── plugins │ ├── embed │ ├── api.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── apispace.apinto.com │ │ ├── README.md │ │ ├── apispace.jpg │ │ └── plugin.yml │ ├── application.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── audit.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── cluster.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── discovery.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── email.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── ext_app.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── log.apinto.com │ │ ├── README.md │ │ ├── plugin.yml │ │ └── 日志检索.png │ ├── module_plugin.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── open_api.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── plugin.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── plugin_template.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── strategy-cache.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── strategy-data-mask.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── strategy-fuse.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── strategy-grey.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── strategy-traffic.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── strategy-visit.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── upstream.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ ├── variable.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ └── webhook.apinto.com │ │ ├── README.md │ │ ├── logo.png │ │ └── plugin.yml │ └── plugins.g.go ├── module ├── access-reader.go ├── api-info.go ├── builder │ ├── builder.go │ ├── builder_test.go │ └── norouter.go ├── driver.go ├── frontend.go ├── frontend_test.go ├── handler.go ├── middleware-request.go ├── middleware-response.go ├── middleware.go ├── module.go ├── options.go ├── plugin.go ├── provider.go ├── repeat-read.go ├── response-update.go ├── response-update_test.go └── simple.go ├── modules ├── api │ ├── api-dto │ │ └── api.go │ ├── api-entry │ │ ├── api.go │ │ ├── api_history.go │ │ ├── api_runtime.go │ │ ├── api_stat.go │ │ ├── api_version.go │ │ └── publish_history.go │ ├── api.go │ ├── controller │ │ ├── api.go │ │ ├── module.go │ │ ├── options.go │ │ └── routers.go │ ├── driver │ │ ├── api_http.go │ │ ├── api_websocket.go │ │ └── common.go │ ├── mock │ │ └── api_mock.go │ ├── model │ │ ├── api.go │ │ └── option.go │ ├── service │ │ ├── api-driver.go │ │ ├── api.go │ │ ├── batch_online_api.go │ │ ├── import_api_data.go │ │ └── init.go │ ├── status-code │ │ └── code.go │ └── store │ │ ├── api.go │ │ ├── api_history.go │ │ ├── api_stat.go │ │ ├── api_version.go │ │ ├── init.go │ │ └── publish_history.go ├── application │ ├── application-controller │ │ ├── application.go │ │ ├── module.go │ │ ├── options.go │ │ └── routers.go │ ├── application-dto │ │ ├── application.go │ │ └── application_auth.go │ ├── application-entry │ │ ├── application.go │ │ ├── application_auth.go │ │ └── application_auth_publish.go │ ├── application-model │ │ ├── application.go │ │ └── application_auth.go │ ├── application-service │ │ ├── application.go │ │ ├── auth.go │ │ ├── driver.go │ │ └── init.go │ ├── application-store │ │ ├── application.go │ │ ├── application_auth.go │ │ ├── application_history.go │ │ ├── application_stat.go │ │ ├── application_version.go │ │ ├── init.go │ │ └── publish_history.go │ ├── application_service.go │ └── driver │ │ ├── aksk.go │ │ ├── apikey.go │ │ ├── basic.go │ │ ├── common.go │ │ ├── jwt.go │ │ ├── oauth2.go │ │ ├── openid-connect-jwt.go │ │ └── para-hmac.go ├── audit │ ├── audit-controller │ │ ├── audit.go │ │ ├── audit_log.go │ │ └── module.go │ ├── audit-entry │ │ └── audit_log.go │ ├── audit-model │ │ ├── audit_log.go │ │ └── operater.go │ ├── audit-service │ │ ├── audit_log.go │ │ └── init.go │ ├── audit-store │ │ ├── audit_log.go │ │ └── init.go │ └── audit.go ├── base │ ├── env-controller │ │ └── enum.go │ ├── env-model │ │ └── cluster_enum.go │ ├── frontend-model │ │ └── frontend.go │ ├── history-entry │ │ └── history.go │ ├── locker-service │ │ ├── init.go │ │ └── lock.go │ ├── namespace-controller │ │ └── namespace.go │ ├── publish-entry │ │ └── publish_history.go │ ├── quote-entry │ │ └── quote.go │ ├── quote-store │ │ ├── init.go │ │ └── quote.go │ ├── random-controller │ │ └── random.go │ ├── runtime-entry │ │ └── runtime.go │ ├── stat-entry │ │ └── stat.go │ └── version-entry │ │ └── version.go ├── cluster │ ├── cluster-controller │ │ ├── cluster.go │ │ ├── cluster_certificate.go │ │ ├── cluster_gm_certificate.go │ │ ├── cluster_node.go │ │ └── module.go │ ├── cluster-dto │ │ ├── cluster.go │ │ ├── cluster_certificate.go │ │ ├── cluster_config.go │ │ ├── cluster_node.go │ │ └── cluster_variable.go │ ├── cluster-entry │ │ ├── cluster.go │ │ ├── cluster_certificate.go │ │ ├── cluster_config_runtime.go │ │ └── cluster_node.go │ ├── cluster-mock │ │ └── cluster_mock.go │ ├── cluster-model │ │ ├── cluster.go │ │ ├── cluster_certificate.go │ │ └── cluster_node.go │ ├── cluster-service │ │ ├── apinto_client.go │ │ ├── cluster.go │ │ ├── cluster_certificate.go │ │ ├── cluster_gm_certificate.go │ │ ├── cluster_node.go │ │ ├── init.go │ │ └── node_cache.go │ ├── cluster-store │ │ ├── cluster.go │ │ ├── cluster_certificate.go │ │ ├── cluster_history.go │ │ ├── cluster_node.go │ │ ├── cluster_runtime.go │ │ └── init.go │ └── service.go ├── core │ ├── controller │ │ ├── access.go │ │ ├── common-strategy.go │ │ ├── env.go │ │ ├── frontend-plugin-inert.yml │ │ ├── module.go │ │ ├── report.go │ │ ├── session.go │ │ ├── system.go │ │ └── user.go │ ├── model │ │ └── navigation.go │ ├── service.go │ └── service │ │ ├── init.go │ │ ├── provider.go │ │ ├── service.go │ │ └── systemService.go ├── dynamic │ ├── dynamic-controller │ │ ├── define.go │ │ ├── dynamic.go │ │ ├── module.go │ │ ├── options.go │ │ └── provider.go │ ├── dynamic-dto │ │ ├── cluster.go │ │ └── dynamic.go │ ├── dynamic-entry │ │ ├── dynamic.go │ │ ├── dynamic_publish_history.go │ │ ├── dynamic_publish_version.go │ │ ├── dynamic_quote.go │ │ └── sql.sql │ ├── dynamic-model │ │ ├── dynamic.go │ │ └── render.go │ ├── dynamic-service │ │ ├── dynamic.go │ │ ├── init.go │ │ └── variable.go │ ├── dynamic-store │ │ ├── dynamic.go │ │ ├── dynamic_publish_history.go │ │ ├── dynamic_publish_version.go │ │ ├── dynamic_quote.go │ │ └── init.go │ └── dynamic.go ├── email │ ├── controller │ │ ├── email.go │ │ └── module.go │ └── dto │ │ └── email.go ├── group │ ├── group-controller │ │ └── common_group.go │ ├── group-dto │ │ └── common_group.go │ ├── group-entry │ │ └── common_group.go │ ├── group-model │ │ └── common_group.go │ ├── group-service │ │ ├── common_group.go │ │ └── init.go │ ├── group-store │ │ ├── common_group.go │ │ └── init.go │ └── group.go ├── grpc-service │ └── service │ │ ├── api.go │ │ ├── api_test.go │ │ ├── cache.go │ │ ├── console_info.go │ │ ├── error.go │ │ ├── init.go │ │ └── notice_send.go ├── log │ ├── dto │ │ ├── arg.go │ │ └── output.go │ └── module │ │ ├── client.go │ │ ├── conn.go │ │ ├── controller.go │ │ ├── download.go │ │ ├── driver.go │ │ ├── module.go │ │ ├── tail.go │ │ └── util.go ├── mpm3 │ ├── access.go │ ├── controller │ │ ├── access.go │ │ ├── driver.go │ │ ├── frontend.go │ │ ├── install.go │ │ ├── module.go │ │ └── plugin.go │ ├── dto │ │ ├── group.go │ │ ├── plugin.go │ │ └── render.go │ ├── entry │ │ ├── access.go │ │ ├── enable.go │ │ ├── frontend.go │ │ ├── module.go │ │ ├── package.go │ │ ├── plugin.go │ │ └── resources.go │ ├── frontend.go │ ├── install.go │ ├── model │ │ ├── access.go │ │ ├── config.go │ │ ├── group.go │ │ ├── install.go │ │ ├── module.go │ │ └── plugin.go │ ├── modules.go │ ├── plugin.go │ ├── resources.go │ ├── service │ │ ├── access.go │ │ ├── enum.go │ │ ├── error.go │ │ ├── frontend.go │ │ ├── init.go │ │ ├── install-cache.go │ │ ├── install.go │ │ ├── module.go │ │ ├── plugin.go │ │ └── resources.go │ └── store │ │ ├── access.go │ │ ├── enable.go │ │ ├── frontend.go │ │ ├── init.go │ │ ├── module.go │ │ ├── package.go │ │ ├── plugin.go │ │ └── resources.go ├── namespace │ ├── namespace-entry │ │ └── namespace.go │ ├── namespace-mock │ │ └── namespace_mock.go │ ├── namespace-model │ │ └── namespace.go │ ├── namespace-service │ │ ├── init.go │ │ └── namespace.go │ ├── namespace-store │ │ ├── init.go │ │ └── namespace.go │ └── service.go ├── navigation │ ├── navigation-model │ │ └── navigation.go │ ├── navigation-service │ │ ├── init.go │ │ └── navigation.go │ └── navigation.go ├── notice │ ├── controller │ │ ├── notice.go │ │ └── routers.go │ ├── driver.go │ ├── dto │ │ └── notice.go │ ├── notice-entry │ │ └── notice_channel.go │ ├── notice-mock │ │ └── notice_mock.go │ ├── notice-model │ │ └── notice_channel.go │ ├── notice-service │ │ ├── driver.go │ │ ├── init.go │ │ └── notice_channel.go │ ├── notice-store │ │ ├── init.go │ │ ├── notice_channel.go │ │ ├── notice_channel_stat.go │ │ └── notice_channel_version.go │ └── notice.go ├── online │ ├── online-dto │ │ └── common_online.go │ └── service.go ├── openapi │ ├── driver │ │ ├── openAPI3.go │ │ └── swagger2.go │ ├── open-api-controller │ │ ├── api_openAPI.go │ │ ├── cluster.go │ │ ├── module.go │ │ ├── routers.go │ │ ├── strategy.go │ │ └── strategy │ │ │ ├── filter.go │ │ │ ├── limiting.go │ │ │ ├── strategy.go │ │ │ └── visit.go │ ├── openapi-dto │ │ └── api_openAPI.go │ ├── openapi-model │ │ └── api_openAPI.go │ ├── openapi-service │ │ ├── api_openAPI.go │ │ └── init.go │ └── openapi.go ├── openapp │ ├── open-app-controller │ │ ├── external_app.go │ │ ├── module.go │ │ └── routers.go │ ├── open-app-dto │ │ └── external_app.go │ ├── open-app-entry │ │ └── external_app.go │ ├── open-app-model │ │ ├── external-app.go │ │ └── swagger.go │ ├── openapp-service │ │ ├── api_import_format.go │ │ ├── external-app.go │ │ └── init.go │ ├── openapp-store │ │ ├── external_app.go │ │ └── init.go │ └── openapp.go ├── plugin │ ├── cluster_plugin_service.go │ ├── plugin-controller │ │ ├── cluster_plugin.go │ │ ├── module.go │ │ └── plugin.go │ ├── plugin-dto │ │ ├── cluster_plugin.go │ │ └── plugin.go │ ├── plugin-entry │ │ ├── cluster_plugin.go │ │ ├── cluster_plugin_history.go │ │ ├── cluster_plugin_publish_history.go │ │ ├── cluster_plugin_publish_version.go │ │ ├── cluster_plugin_runtime.go │ │ ├── plugin.go │ │ └── plugin_history.go │ ├── plugin-model │ │ ├── cluster_plugin.go │ │ └── plugin.go │ ├── plugin-service │ │ ├── cluster_plugin.go │ │ ├── extender_cache.go │ │ ├── init.go │ │ └── plugin.go │ ├── plugin-store │ │ ├── cluster_plugin.go │ │ ├── cluster_plugin_history.go │ │ ├── cluster_plugin_publish_history.go │ │ ├── cluster_plugin_publish_version.go │ │ ├── cluster_plugin_runtime.go │ │ ├── init.go │ │ ├── plugin.go │ │ └── plugin_history.go │ ├── plugin_service.go │ └── plugin_timer │ │ ├── extender.go │ │ └── init.go ├── plugin_template │ ├── plugin-template-controller │ │ ├── module.go │ │ └── plugin_template.go │ ├── plugin-template-dto │ │ └── plugin_template.go │ ├── plugin-template-entry │ │ ├── plugin_template.go │ │ ├── plugin_template_history.go │ │ ├── plugin_template_runtime.go │ │ ├── plugin_template_stat.go │ │ ├── plugin_template_version.go │ │ └── publish_history.go │ ├── plugin-template-model │ │ └── plugin_template.go │ ├── plugin-template-service │ │ ├── init.go │ │ └── plugin_template.go │ ├── plugin-template-store │ │ ├── init.go │ │ ├── plugin_template.go │ │ ├── plugin_template_history.go │ │ ├── plugin_template_runtime.go │ │ ├── plugin_template_stat.go │ │ ├── plugin_template_version.go │ │ └── publish_history.go │ └── plugin_template_service.go ├── random │ ├── random-service │ │ ├── init.go │ │ └── random.go │ └── random.go ├── remote_storage │ ├── entry │ │ └── remote_key_object.go │ ├── model │ │ └── remote_storage.go │ ├── remote_storage.go │ ├── service │ │ ├── init.go │ │ └── remote_storage.go │ └── store │ │ ├── init.go │ │ └── remote_storage.go ├── strategy │ ├── config │ │ ├── content-type.go │ │ ├── content-type.yml │ │ ├── metrics.go │ │ ├── strategy.go │ │ └── strategy_status.go │ ├── strategy-controller │ │ ├── module-cache.go │ │ ├── module-data-mask.go │ │ ├── module-fuse.go │ │ ├── module-grey.go │ │ ├── module-traffic.go │ │ ├── module-visit.go │ │ ├── stragety-traffic.go │ │ ├── strategy-cache.go │ │ ├── strategy-common.go │ │ ├── strategy-data-mask.go │ │ ├── strategy-fuse.go │ │ ├── strategy-grey.go │ │ ├── strategy-visit.go │ │ └── strategy.go │ ├── strategy-dto │ │ └── strategy.go │ ├── strategy-entry │ │ ├── strategy.go │ │ ├── strategy_history.go │ │ ├── strategy_publish_history.go │ │ ├── strategy_publish_version.go │ │ ├── strategy_runtime.go │ │ ├── strategy_stat.go │ │ └── strategy_version.go │ ├── strategy-model │ │ └── strategy.go │ ├── strategy-service │ │ ├── filters.go │ │ ├── init.go │ │ ├── strategy-common.go │ │ ├── strategy-handler │ │ │ ├── cache.go │ │ │ ├── check.go │ │ │ ├── data-mask.go │ │ │ ├── fuse.go │ │ │ ├── grey.go │ │ │ ├── traffic.go │ │ │ └── visit.go │ │ └── strategy.go │ ├── strategy-store │ │ ├── init.go │ │ ├── strategy.go │ │ ├── strategy_history.go │ │ ├── strategy_publish_history.go │ │ ├── strategy_publish_version.go │ │ ├── strategy_runtime.go │ │ ├── strategy_stat.go │ │ └── strategy_version.go │ └── strategy.go ├── system │ ├── service │ │ ├── data-key.go │ │ ├── data.go │ │ ├── init.go │ │ └── system.go │ ├── system-entry │ │ └── system_info.go │ ├── system-store │ │ ├── init.go │ │ └── system_info.go │ └── system.go ├── user │ ├── user-dto │ │ └── user_info.go │ ├── user-entry │ │ └── user_info.go │ ├── user-mock │ │ └── user_mock.go │ ├── user-model │ │ └── user_info.go │ ├── user-service │ │ ├── init.go │ │ ├── user_cache.go │ │ └── user_info.go │ ├── user-store │ │ ├── init.go │ │ └── user_info.go │ └── user.go ├── variable │ ├── service.go │ ├── variable-controller │ │ ├── cluster_variable.go │ │ ├── global_variable.go │ │ └── module.go │ ├── variable-dto │ │ └── global_variable.go │ ├── variable-entry │ │ ├── variable_cluster.go │ │ ├── variable_history.go │ │ ├── variable_publish_history.go │ │ ├── variable_runtime.go │ │ ├── variable_version.go │ │ └── variables.go │ ├── variable-model │ │ ├── cluster_variable.go │ │ └── global_variable.go │ ├── variable-service │ │ ├── cluster_variable.go │ │ ├── global_variable.go │ │ └── init.go │ └── variable-store │ │ ├── cluster_variable.go │ │ ├── global_variable.go │ │ ├── init.go │ │ ├── variable_history.go │ │ ├── variable_publish_history.go │ │ ├── variable_publish_version.go │ │ └── variable_runtime.go └── webhook │ ├── controller │ ├── module.go │ └── webhook.go │ └── dto │ └── webhook.go ├── plugin ├── go-plugin │ ├── example │ │ ├── .gitignore │ │ ├── client.go │ │ ├── config.yml │ │ └── plugin │ │ │ ├── .gitignore │ │ │ ├── main.go │ │ │ ├── plugin.go │ │ │ └── service.go │ ├── plugin-client │ │ ├── api.go │ │ ├── client.go │ │ └── cmd.go │ ├── plugin │ │ ├── config.go │ │ ├── logger.go │ │ ├── plugin.go │ │ ├── response.go │ │ ├── server.go │ │ ├── server_keys.go │ │ └── tool.go │ ├── proto │ │ ├── gen.go │ │ ├── plugin.pb.go │ │ ├── plugin.proto │ │ └── plugin_grpc.pb.go │ └── shared │ │ ├── config.go │ │ └── handler.go ├── local │ ├── cmd_unix.go │ ├── cmd_win.go │ ├── config.go │ ├── define.go │ ├── driver.go │ ├── module.go │ └── plugin.go └── remote │ ├── config.go │ ├── define.go │ ├── driver.go │ ├── module.go │ ├── plugin.go │ └── remote_apis.go ├── pm3 ├── api.go ├── base.go ├── driver.go ├── embed_registry │ ├── load.go │ ├── plugin.go │ └── resources.go ├── install.go ├── middleware │ ├── check.go │ ├── handler.go │ └── multiple.go ├── module.go ├── pinstall │ └── read.go ├── provider.go └── read-info.go ├── report ├── env.go └── report.go ├── scripts ├── Dockerfile ├── build.sh ├── init.sh └── resource │ ├── .gitignore │ ├── config.yml.tpl │ ├── docker_run.sh │ ├── install.sh │ └── run.sh └── store ├── base_history.go ├── base_publish_history.go ├── base_runtime.go ├── basekind.go ├── init.go ├── page.go ├── register.go ├── store.go └── store_mysql └── db-mysql.go /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/docs_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.github/ISSUE_TEMPLATE/docs_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_help.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.github/ISSUE_TEMPLATE/request_help.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/apserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/.gitignore -------------------------------------------------------------------------------- /app/apserver/apserver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/apserver.go -------------------------------------------------------------------------------- /app/apserver/customized.bak/custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/customized.bak/custom.yml -------------------------------------------------------------------------------- /app/apserver/customized.bak/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/customized.bak/favicon.jpg -------------------------------------------------------------------------------- /app/apserver/customized.bak/logo-auth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/customized.bak/logo-auth.jpg -------------------------------------------------------------------------------- /app/apserver/customized.bak/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/customized.bak/logo.jpg -------------------------------------------------------------------------------- /app/apserver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/driver.go -------------------------------------------------------------------------------- /app/apserver/embed_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/embed_plugin.go -------------------------------------------------------------------------------- /app/apserver/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/log.go -------------------------------------------------------------------------------- /app/apserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/main.go -------------------------------------------------------------------------------- /app/apserver/services.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/services.go -------------------------------------------------------------------------------- /app/apserver/version/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/version/dashboard.go -------------------------------------------------------------------------------- /app/apserver/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/app/apserver/version/version.go -------------------------------------------------------------------------------- /cache/common-cache-mock/common-cache_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/cache/common-cache-mock/common-cache_mock.go -------------------------------------------------------------------------------- /cache/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/cache/common.go -------------------------------------------------------------------------------- /cache/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/cache/init.go -------------------------------------------------------------------------------- /cache/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/cache/lock.go -------------------------------------------------------------------------------- /cache/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/cache/locker.go -------------------------------------------------------------------------------- /cache/redis_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/cache/redis_cache.go -------------------------------------------------------------------------------- /client/v1/cert_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/cert_api.go -------------------------------------------------------------------------------- /client/v1/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/client.go -------------------------------------------------------------------------------- /client/v1/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/client_test.go -------------------------------------------------------------------------------- /client/v1/extender_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/extender_api.go -------------------------------------------------------------------------------- /client/v1/gm_cert_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/gm_cert_api.go -------------------------------------------------------------------------------- /client/v1/http_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/http_request.go -------------------------------------------------------------------------------- /client/v1/initialize/plugin/apinto_plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/initialize/plugin/apinto_plugin.yml -------------------------------------------------------------------------------- /client/v1/initialize/plugin/black_extended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/initialize/plugin/black_extended.go -------------------------------------------------------------------------------- /client/v1/initialize/plugin/black_extended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/initialize/plugin/black_extended.yml -------------------------------------------------------------------------------- /client/v1/initialize/plugin/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/initialize/plugin/global.go -------------------------------------------------------------------------------- /client/v1/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/model.go -------------------------------------------------------------------------------- /client/v1/plugin_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/plugin_api.go -------------------------------------------------------------------------------- /client/v1/profession.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/profession.go -------------------------------------------------------------------------------- /client/v1/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/proxy.go -------------------------------------------------------------------------------- /client/v1/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/service.go -------------------------------------------------------------------------------- /client/v1/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/strategy.go -------------------------------------------------------------------------------- /client/v1/variable_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v1/variable_api.go -------------------------------------------------------------------------------- /client/v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/app.go -------------------------------------------------------------------------------- /client/v2/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/client.go -------------------------------------------------------------------------------- /client/v2/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/client_test.go -------------------------------------------------------------------------------- /client/v2/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/cluster.go -------------------------------------------------------------------------------- /client/v2/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/manager.go -------------------------------------------------------------------------------- /client/v2/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/status.go -------------------------------------------------------------------------------- /client/v2/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/client/v2/worker.go -------------------------------------------------------------------------------- /common/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/aes.go -------------------------------------------------------------------------------- /common/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/base64.go -------------------------------------------------------------------------------- /common/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/cert.go -------------------------------------------------------------------------------- /common/compress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/compress.go -------------------------------------------------------------------------------- /common/const.go: -------------------------------------------------------------------------------- 1 | package common 2 | -------------------------------------------------------------------------------- /common/contxt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/contxt.go -------------------------------------------------------------------------------- /common/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/diff.go -------------------------------------------------------------------------------- /common/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/email.go -------------------------------------------------------------------------------- /common/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/email_test.go -------------------------------------------------------------------------------- /common/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/error.go -------------------------------------------------------------------------------- /common/float64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/float64.go -------------------------------------------------------------------------------- /common/gzip-static/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/gzip-static/gzip.go -------------------------------------------------------------------------------- /common/gzip-static/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/gzip-static/gzip_test.go -------------------------------------------------------------------------------- /common/gzip-static/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/gzip-static/handler.go -------------------------------------------------------------------------------- /common/gzip-static/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/gzip-static/options.go -------------------------------------------------------------------------------- /common/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/http.go -------------------------------------------------------------------------------- /common/interface_to_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/interface_to_all.go -------------------------------------------------------------------------------- /common/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/json.go -------------------------------------------------------------------------------- /common/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/jwt.go -------------------------------------------------------------------------------- /common/map.go: -------------------------------------------------------------------------------- 1 | package common 2 | 3 | type Map map[string]any 4 | -------------------------------------------------------------------------------- /common/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/md5.go -------------------------------------------------------------------------------- /common/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/panic.go -------------------------------------------------------------------------------- /common/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/path.go -------------------------------------------------------------------------------- /common/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/pool.go -------------------------------------------------------------------------------- /common/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/rand.go -------------------------------------------------------------------------------- /common/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/regexp.go -------------------------------------------------------------------------------- /common/restful/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/builder.go -------------------------------------------------------------------------------- /common/restful/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/data.go -------------------------------------------------------------------------------- /common/restful/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/path.go -------------------------------------------------------------------------------- /common/restful/path_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/path_test.go -------------------------------------------------------------------------------- /common/restful/request-call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/request-call.go -------------------------------------------------------------------------------- /common/restful/request-oneway.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/request-oneway.go -------------------------------------------------------------------------------- /common/restful/request-rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/request-rpc.go -------------------------------------------------------------------------------- /common/restful/request-simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/request-simple.go -------------------------------------------------------------------------------- /common/restful/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/request.go -------------------------------------------------------------------------------- /common/restful/restful.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/restful.go -------------------------------------------------------------------------------- /common/restful/restful_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/restful/restful_test.go -------------------------------------------------------------------------------- /common/schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/schema/README.md -------------------------------------------------------------------------------- /common/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/schema/schema.go -------------------------------------------------------------------------------- /common/schema/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/schema/schema_test.go -------------------------------------------------------------------------------- /common/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/set.go -------------------------------------------------------------------------------- /common/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/slice.go -------------------------------------------------------------------------------- /common/slice_to_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/slice_to_all.go -------------------------------------------------------------------------------- /common/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/slices.go -------------------------------------------------------------------------------- /common/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/time.go -------------------------------------------------------------------------------- /common/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/webhook.go -------------------------------------------------------------------------------- /common/webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/webhook_test.go -------------------------------------------------------------------------------- /common/yml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/common/yml.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/config/config.go -------------------------------------------------------------------------------- /config/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/config/dir.go -------------------------------------------------------------------------------- /config/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/config/redis.go -------------------------------------------------------------------------------- /config/store-mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/config/store-mysql.go -------------------------------------------------------------------------------- /config/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/config/store.go -------------------------------------------------------------------------------- /controller/.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ -------------------------------------------------------------------------------- /controller/audit.go: -------------------------------------------------------------------------------- 1 | package controller 2 | -------------------------------------------------------------------------------- /controller/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/controller/filters.go -------------------------------------------------------------------------------- /controller/gin_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/controller/gin_context.go -------------------------------------------------------------------------------- /controller/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/controller/result.go -------------------------------------------------------------------------------- /controller/users/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/controller/users/user.go -------------------------------------------------------------------------------- /custom/custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/custom/custom.go -------------------------------------------------------------------------------- /custom/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/custom/default.go -------------------------------------------------------------------------------- /driver/driver_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/driver/driver_manager.go -------------------------------------------------------------------------------- /enum/api_manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/api_manager.go -------------------------------------------------------------------------------- /enum/change_opt_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/change_opt_type.go -------------------------------------------------------------------------------- /enum/cluster_config.go: -------------------------------------------------------------------------------- 1 | package enum 2 | -------------------------------------------------------------------------------- /enum/cluster_node_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/cluster_node_status.go -------------------------------------------------------------------------------- /enum/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/cluster_plugin.go -------------------------------------------------------------------------------- /enum/cluster_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/cluster_status.go -------------------------------------------------------------------------------- /enum/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/common.go -------------------------------------------------------------------------------- /enum/keyword.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/keyword.go -------------------------------------------------------------------------------- /enum/online_status_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/online_status_type.go -------------------------------------------------------------------------------- /enum/publish_opt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/publish_opt.go -------------------------------------------------------------------------------- /enum/publish_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/publish_type.go -------------------------------------------------------------------------------- /enum/variable_usage_status_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/enum/variable_usage_status_type.go -------------------------------------------------------------------------------- /filter/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/filter/filter.go -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/.npmrc -------------------------------------------------------------------------------- /frontend/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/.prettierrc.json -------------------------------------------------------------------------------- /frontend/.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/.yarnrc -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/angular.json -------------------------------------------------------------------------------- /frontend/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/assets.go -------------------------------------------------------------------------------- /frontend/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/frontend.go -------------------------------------------------------------------------------- /frontend/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/jest.config.ts -------------------------------------------------------------------------------- /frontend/logo/favicon-pro.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/logo/favicon-pro.ico -------------------------------------------------------------------------------- /frontend/logo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/logo/favicon.ico -------------------------------------------------------------------------------- /frontend/logo/logo-auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/logo/logo-auth.svg -------------------------------------------------------------------------------- /frontend/logo/logo-pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/logo/logo-pro.svg -------------------------------------------------------------------------------- /frontend/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/logo/logo.svg -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/app.component.html -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/constant/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/constant/app.config.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/app/service/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/app/service/api.service.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/assets/apinto-auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/assets/apinto-auth.svg -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/environments/environment.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/favicon.ico -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/index.html -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/main.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/src/styles.scss -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/apinto-auth/webpack.config.ts -------------------------------------------------------------------------------- /frontend/projects/apinto-auth/webpack.prod.config.ts: -------------------------------------------------------------------------------- 1 | module.exports = require('./webpack.config'); 2 | -------------------------------------------------------------------------------- /frontend/projects/core/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/app.component.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/app.module.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/component/component.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/component/component.module.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/constant/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/constant/app.config.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/constant/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/constant/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/constant/eo-ng-validator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/constant/eo-ng-validator.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/constant/form.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/constant/form.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/constant/spec-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/constant/spec-test.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/constant/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/constant/type.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/custom-preloading-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/custom-preloading-strategy.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/directive/directive.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/directive/directive.module.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/api/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/api/api.module.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/api/router.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/api/router.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/api/types/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/api/types/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/api/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/api/types/types.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/audit-log/types/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/audit-log/types/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/global-env-var/types/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/guide/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/guide/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/layout.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/layout.module.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/log-retrieval/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/log-retrieval/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/log-retrieval/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/log-retrieval/type.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/plugin/types/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/plugin/types/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/plugin/types/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/plugin/types/types.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/system/types/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/system/types/conf.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/layout/system/types/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/layout/system/types/type.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/pipe/change-word-color.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/pipe/change-word-color.pipe.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/pipe/safe.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/pipe/safe.pipe.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/plugin-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/plugin-mock.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/api.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/as-iframe.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/as-iframe.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/base-info.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/base-info.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/crypto.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/crypto.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/eo-ng-json.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/eo-ng-json.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/iframe-http.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/iframe-http.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/service/websocket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/service/websocket.service.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/util/module-federation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/util/module-federation.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/util/plugin-driver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/util/plugin-driver.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/app/util/plugin-lifecycle.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/app/util/plugin-lifecycle.guard.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/README.md -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/apinto-auth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/apinto-auth.svg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/apinto-pro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/apinto-pro.svg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/apinto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/apinto.svg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/avatar.svg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/default-guide-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/default-guide-icon.png -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/default-plugin-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/default-plugin-icon.svg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/favicon-pro.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/favicon-pro.ico -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/favicon.ico -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/guide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/guide.jpg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/iconpark-apinto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/iconpark-apinto.js -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/iconpark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/iconpark.js -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/logo/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/logo/logo_dark.png -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/logo/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/logo/logo_light.png -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/no-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/no-access.svg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/side_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/side_bg.jpg -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/theme/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/theme/dark.json -------------------------------------------------------------------------------- /frontend/projects/core/src/assets/theme/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/assets/theme/light.json -------------------------------------------------------------------------------- /frontend/projects/core/src/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/bootstrap.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/environments/basic.ts: -------------------------------------------------------------------------------- 1 | export const defaultEnvironment = { 2 | } 3 | -------------------------------------------------------------------------------- /frontend/projects/core/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/environments/environment.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/favicon.ico -------------------------------------------------------------------------------- /frontend/projects/core/src/form.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/form.style.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/formily.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/formily.style.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/index.html -------------------------------------------------------------------------------- /frontend/projects/core/src/input.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/input.style.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/layout.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/layout.style.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/main.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/polyfills.ts -------------------------------------------------------------------------------- /frontend/projects/core/src/select.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/select.style.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/styles.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/table.style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/table.style.scss -------------------------------------------------------------------------------- /frontend/projects/core/src/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/src/variables.css -------------------------------------------------------------------------------- /frontend/projects/core/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/projects/core/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/projects/core/webpack.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/core/webpack.config.ts -------------------------------------------------------------------------------- /frontend/projects/core/webpack.prod.config.ts: -------------------------------------------------------------------------------- 1 | module.exports = require('./webpack.config') 2 | -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/README.md -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/ng-package.json -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/package.json -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/src/lib/types.ts -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/src/public-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/src/public-api.ts -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/tsconfig.json -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/tsconfig.lib.json -------------------------------------------------------------------------------- /frontend/projects/eo-ng-apinto-table/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/projects/eo-ng-apinto-table/tsconfig.spec.json -------------------------------------------------------------------------------- /frontend/proxy.config.demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/proxy.config.demo.json -------------------------------------------------------------------------------- /frontend/proxy.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/proxy.config.json -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/test/setup-jest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/test/setup-jest.ts -------------------------------------------------------------------------------- /frontend/tool/replaceCssVariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/tool/replaceCssVariable.js -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/frontend/tsconfig.spec.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/go.sum -------------------------------------------------------------------------------- /grpc-service/api.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/api.pb.go -------------------------------------------------------------------------------- /grpc-service/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/api.proto -------------------------------------------------------------------------------- /grpc-service/api_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/api_grpc.pb.go -------------------------------------------------------------------------------- /grpc-service/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/gen.go -------------------------------------------------------------------------------- /grpc-service/infos.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/infos.pb.go -------------------------------------------------------------------------------- /grpc-service/infos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/infos.proto -------------------------------------------------------------------------------- /grpc-service/infos_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/infos_grpc.pb.go -------------------------------------------------------------------------------- /grpc-service/notice_send.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/notice_send.pb.go -------------------------------------------------------------------------------- /grpc-service/notice_send.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/notice_send.proto -------------------------------------------------------------------------------- /grpc-service/notice_send_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/grpc-service/notice_send_grpc.pb.go -------------------------------------------------------------------------------- /initialize/inert/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/inert/frontend.go -------------------------------------------------------------------------------- /initialize/navigation/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/navigation/navigation.go -------------------------------------------------------------------------------- /initialize/navigation/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/navigation/navigation.yml -------------------------------------------------------------------------------- /initialize/plugin-group/plugin_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugin-group/plugin_group.go -------------------------------------------------------------------------------- /initialize/plugin-group/plugin_group.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugin-group/plugin_group.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/api.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/api.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/api.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/api.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/api.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/api.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/apispace.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/apispace.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/apispace.apinto.com/apispace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/apispace.apinto.com/apispace.jpg -------------------------------------------------------------------------------- /initialize/plugins/embed/apispace.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/apispace.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/application.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/application.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/application.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/application.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/application.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/application.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/audit.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/audit.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/audit.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/audit.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/audit.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/audit.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/cluster.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/cluster.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/cluster.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/cluster.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/cluster.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/cluster.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/discovery.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/discovery.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/discovery.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/discovery.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/discovery.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/discovery.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/email.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/email.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/email.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/email.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/email.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/email.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/ext_app.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/ext_app.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/ext_app.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/ext_app.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/ext_app.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/ext_app.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/log.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/log.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/log.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/log.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/log.apinto.com/日志检索.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/log.apinto.com/日志检索.png -------------------------------------------------------------------------------- /initialize/plugins/embed/module_plugin.apinto.com/README.md: -------------------------------------------------------------------------------- 1 | # 企业插件 -------------------------------------------------------------------------------- /initialize/plugins/embed/module_plugin.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/module_plugin.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/open_api.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/open_api.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/open_api.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/open_api.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/open_api.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/open_api.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/plugin.apinto.com/README.md: -------------------------------------------------------------------------------- 1 | # 全局插件 -------------------------------------------------------------------------------- /initialize/plugins/embed/plugin.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/plugin.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/plugin.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/plugin.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/plugin_template.apinto.com/README.md: -------------------------------------------------------------------------------- 1 | # 插件模板 -------------------------------------------------------------------------------- /initialize/plugins/embed/strategy-fuse.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/strategy-fuse.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/strategy-grey.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/strategy-grey.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/upstream.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/upstream.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/upstream.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/upstream.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/upstream.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/upstream.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/variable.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/variable.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/variable.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/variable.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/variable.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/variable.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/embed/webhook.apinto.com/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/webhook.apinto.com/README.md -------------------------------------------------------------------------------- /initialize/plugins/embed/webhook.apinto.com/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/webhook.apinto.com/logo.png -------------------------------------------------------------------------------- /initialize/plugins/embed/webhook.apinto.com/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/embed/webhook.apinto.com/plugin.yml -------------------------------------------------------------------------------- /initialize/plugins/plugins.g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/initialize/plugins/plugins.g.go -------------------------------------------------------------------------------- /module/access-reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/access-reader.go -------------------------------------------------------------------------------- /module/api-info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/api-info.go -------------------------------------------------------------------------------- /module/builder/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/builder/builder.go -------------------------------------------------------------------------------- /module/builder/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/builder/builder_test.go -------------------------------------------------------------------------------- /module/builder/norouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/builder/norouter.go -------------------------------------------------------------------------------- /module/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/driver.go -------------------------------------------------------------------------------- /module/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/frontend.go -------------------------------------------------------------------------------- /module/frontend_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/frontend_test.go -------------------------------------------------------------------------------- /module/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/handler.go -------------------------------------------------------------------------------- /module/middleware-request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/middleware-request.go -------------------------------------------------------------------------------- /module/middleware-response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/middleware-response.go -------------------------------------------------------------------------------- /module/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/middleware.go -------------------------------------------------------------------------------- /module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/module.go -------------------------------------------------------------------------------- /module/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/options.go -------------------------------------------------------------------------------- /module/plugin.go: -------------------------------------------------------------------------------- 1 | package apinto_module 2 | -------------------------------------------------------------------------------- /module/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/provider.go -------------------------------------------------------------------------------- /module/repeat-read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/repeat-read.go -------------------------------------------------------------------------------- /module/response-update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/response-update.go -------------------------------------------------------------------------------- /module/response-update_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/module/response-update_test.go -------------------------------------------------------------------------------- /module/simple.go: -------------------------------------------------------------------------------- 1 | package apinto_module 2 | -------------------------------------------------------------------------------- /modules/api/api-dto/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-dto/api.go -------------------------------------------------------------------------------- /modules/api/api-entry/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-entry/api.go -------------------------------------------------------------------------------- /modules/api/api-entry/api_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-entry/api_history.go -------------------------------------------------------------------------------- /modules/api/api-entry/api_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-entry/api_runtime.go -------------------------------------------------------------------------------- /modules/api/api-entry/api_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-entry/api_stat.go -------------------------------------------------------------------------------- /modules/api/api-entry/api_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-entry/api_version.go -------------------------------------------------------------------------------- /modules/api/api-entry/publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api-entry/publish_history.go -------------------------------------------------------------------------------- /modules/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/api.go -------------------------------------------------------------------------------- /modules/api/controller/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/controller/api.go -------------------------------------------------------------------------------- /modules/api/controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/controller/module.go -------------------------------------------------------------------------------- /modules/api/controller/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/controller/options.go -------------------------------------------------------------------------------- /modules/api/controller/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/controller/routers.go -------------------------------------------------------------------------------- /modules/api/driver/api_http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/driver/api_http.go -------------------------------------------------------------------------------- /modules/api/driver/api_websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/driver/api_websocket.go -------------------------------------------------------------------------------- /modules/api/driver/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/driver/common.go -------------------------------------------------------------------------------- /modules/api/mock/api_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/mock/api_mock.go -------------------------------------------------------------------------------- /modules/api/model/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/model/api.go -------------------------------------------------------------------------------- /modules/api/model/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/model/option.go -------------------------------------------------------------------------------- /modules/api/service/api-driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/service/api-driver.go -------------------------------------------------------------------------------- /modules/api/service/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/service/api.go -------------------------------------------------------------------------------- /modules/api/service/batch_online_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/service/batch_online_api.go -------------------------------------------------------------------------------- /modules/api/service/import_api_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/service/import_api_data.go -------------------------------------------------------------------------------- /modules/api/service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/service/init.go -------------------------------------------------------------------------------- /modules/api/status-code/code.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/status-code/code.go -------------------------------------------------------------------------------- /modules/api/store/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/store/api.go -------------------------------------------------------------------------------- /modules/api/store/api_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/store/api_history.go -------------------------------------------------------------------------------- /modules/api/store/api_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/store/api_stat.go -------------------------------------------------------------------------------- /modules/api/store/api_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/store/api_version.go -------------------------------------------------------------------------------- /modules/api/store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/store/init.go -------------------------------------------------------------------------------- /modules/api/store/publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/api/store/publish_history.go -------------------------------------------------------------------------------- /modules/application/application-controller/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-controller/application.go -------------------------------------------------------------------------------- /modules/application/application-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-controller/module.go -------------------------------------------------------------------------------- /modules/application/application-controller/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-controller/options.go -------------------------------------------------------------------------------- /modules/application/application-controller/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-controller/routers.go -------------------------------------------------------------------------------- /modules/application/application-dto/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-dto/application.go -------------------------------------------------------------------------------- /modules/application/application-dto/application_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-dto/application_auth.go -------------------------------------------------------------------------------- /modules/application/application-entry/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-entry/application.go -------------------------------------------------------------------------------- /modules/application/application-entry/application_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-entry/application_auth.go -------------------------------------------------------------------------------- /modules/application/application-model/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-model/application.go -------------------------------------------------------------------------------- /modules/application/application-model/application_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-model/application_auth.go -------------------------------------------------------------------------------- /modules/application/application-service/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-service/application.go -------------------------------------------------------------------------------- /modules/application/application-service/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-service/auth.go -------------------------------------------------------------------------------- /modules/application/application-service/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-service/driver.go -------------------------------------------------------------------------------- /modules/application/application-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-service/init.go -------------------------------------------------------------------------------- /modules/application/application-store/application.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-store/application.go -------------------------------------------------------------------------------- /modules/application/application-store/application_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-store/application_auth.go -------------------------------------------------------------------------------- /modules/application/application-store/application_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-store/application_stat.go -------------------------------------------------------------------------------- /modules/application/application-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-store/init.go -------------------------------------------------------------------------------- /modules/application/application-store/publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application-store/publish_history.go -------------------------------------------------------------------------------- /modules/application/application_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/application_service.go -------------------------------------------------------------------------------- /modules/application/driver/aksk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/aksk.go -------------------------------------------------------------------------------- /modules/application/driver/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/apikey.go -------------------------------------------------------------------------------- /modules/application/driver/basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/basic.go -------------------------------------------------------------------------------- /modules/application/driver/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/common.go -------------------------------------------------------------------------------- /modules/application/driver/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/jwt.go -------------------------------------------------------------------------------- /modules/application/driver/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/oauth2.go -------------------------------------------------------------------------------- /modules/application/driver/openid-connect-jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/openid-connect-jwt.go -------------------------------------------------------------------------------- /modules/application/driver/para-hmac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/application/driver/para-hmac.go -------------------------------------------------------------------------------- /modules/audit/audit-controller/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-controller/audit.go -------------------------------------------------------------------------------- /modules/audit/audit-controller/audit_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-controller/audit_log.go -------------------------------------------------------------------------------- /modules/audit/audit-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-controller/module.go -------------------------------------------------------------------------------- /modules/audit/audit-entry/audit_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-entry/audit_log.go -------------------------------------------------------------------------------- /modules/audit/audit-model/audit_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-model/audit_log.go -------------------------------------------------------------------------------- /modules/audit/audit-model/operater.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-model/operater.go -------------------------------------------------------------------------------- /modules/audit/audit-service/audit_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-service/audit_log.go -------------------------------------------------------------------------------- /modules/audit/audit-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-service/init.go -------------------------------------------------------------------------------- /modules/audit/audit-store/audit_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-store/audit_log.go -------------------------------------------------------------------------------- /modules/audit/audit-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit-store/init.go -------------------------------------------------------------------------------- /modules/audit/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/audit/audit.go -------------------------------------------------------------------------------- /modules/base/env-controller/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/env-controller/enum.go -------------------------------------------------------------------------------- /modules/base/env-model/cluster_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/env-model/cluster_enum.go -------------------------------------------------------------------------------- /modules/base/frontend-model/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/frontend-model/frontend.go -------------------------------------------------------------------------------- /modules/base/history-entry/history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/history-entry/history.go -------------------------------------------------------------------------------- /modules/base/locker-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/locker-service/init.go -------------------------------------------------------------------------------- /modules/base/locker-service/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/locker-service/lock.go -------------------------------------------------------------------------------- /modules/base/namespace-controller/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/namespace-controller/namespace.go -------------------------------------------------------------------------------- /modules/base/publish-entry/publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/publish-entry/publish_history.go -------------------------------------------------------------------------------- /modules/base/quote-entry/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/quote-entry/quote.go -------------------------------------------------------------------------------- /modules/base/quote-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/quote-store/init.go -------------------------------------------------------------------------------- /modules/base/quote-store/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/quote-store/quote.go -------------------------------------------------------------------------------- /modules/base/random-controller/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/random-controller/random.go -------------------------------------------------------------------------------- /modules/base/runtime-entry/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/runtime-entry/runtime.go -------------------------------------------------------------------------------- /modules/base/stat-entry/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/stat-entry/stat.go -------------------------------------------------------------------------------- /modules/base/version-entry/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/base/version-entry/version.go -------------------------------------------------------------------------------- /modules/cluster/cluster-controller/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-controller/cluster.go -------------------------------------------------------------------------------- /modules/cluster/cluster-controller/cluster_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-controller/cluster_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-controller/cluster_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-controller/cluster_node.go -------------------------------------------------------------------------------- /modules/cluster/cluster-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-controller/module.go -------------------------------------------------------------------------------- /modules/cluster/cluster-dto/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-dto/cluster.go -------------------------------------------------------------------------------- /modules/cluster/cluster-dto/cluster_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-dto/cluster_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-dto/cluster_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-dto/cluster_config.go -------------------------------------------------------------------------------- /modules/cluster/cluster-dto/cluster_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-dto/cluster_node.go -------------------------------------------------------------------------------- /modules/cluster/cluster-dto/cluster_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-dto/cluster_variable.go -------------------------------------------------------------------------------- /modules/cluster/cluster-entry/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-entry/cluster.go -------------------------------------------------------------------------------- /modules/cluster/cluster-entry/cluster_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-entry/cluster_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-entry/cluster_config_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-entry/cluster_config_runtime.go -------------------------------------------------------------------------------- /modules/cluster/cluster-entry/cluster_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-entry/cluster_node.go -------------------------------------------------------------------------------- /modules/cluster/cluster-mock/cluster_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-mock/cluster_mock.go -------------------------------------------------------------------------------- /modules/cluster/cluster-model/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-model/cluster.go -------------------------------------------------------------------------------- /modules/cluster/cluster-model/cluster_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-model/cluster_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-model/cluster_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-model/cluster_node.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/apinto_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/apinto_client.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/cluster.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/cluster_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/cluster_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/cluster_gm_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/cluster_gm_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/cluster_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/cluster_node.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/init.go -------------------------------------------------------------------------------- /modules/cluster/cluster-service/node_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-service/node_cache.go -------------------------------------------------------------------------------- /modules/cluster/cluster-store/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-store/cluster.go -------------------------------------------------------------------------------- /modules/cluster/cluster-store/cluster_certificate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-store/cluster_certificate.go -------------------------------------------------------------------------------- /modules/cluster/cluster-store/cluster_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-store/cluster_history.go -------------------------------------------------------------------------------- /modules/cluster/cluster-store/cluster_node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-store/cluster_node.go -------------------------------------------------------------------------------- /modules/cluster/cluster-store/cluster_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-store/cluster_runtime.go -------------------------------------------------------------------------------- /modules/cluster/cluster-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/cluster-store/init.go -------------------------------------------------------------------------------- /modules/cluster/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/cluster/service.go -------------------------------------------------------------------------------- /modules/core/controller/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/access.go -------------------------------------------------------------------------------- /modules/core/controller/common-strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/common-strategy.go -------------------------------------------------------------------------------- /modules/core/controller/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/env.go -------------------------------------------------------------------------------- /modules/core/controller/frontend-plugin-inert.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/frontend-plugin-inert.yml -------------------------------------------------------------------------------- /modules/core/controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/module.go -------------------------------------------------------------------------------- /modules/core/controller/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/report.go -------------------------------------------------------------------------------- /modules/core/controller/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/session.go -------------------------------------------------------------------------------- /modules/core/controller/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/system.go -------------------------------------------------------------------------------- /modules/core/controller/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/controller/user.go -------------------------------------------------------------------------------- /modules/core/model/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/model/navigation.go -------------------------------------------------------------------------------- /modules/core/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/service.go -------------------------------------------------------------------------------- /modules/core/service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/service/init.go -------------------------------------------------------------------------------- /modules/core/service/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/service/provider.go -------------------------------------------------------------------------------- /modules/core/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/service/service.go -------------------------------------------------------------------------------- /modules/core/service/systemService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/core/service/systemService.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-controller/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-controller/define.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-controller/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-controller/dynamic.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-controller/module.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-controller/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-controller/options.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-controller/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-controller/provider.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-dto/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-dto/cluster.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-dto/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-dto/dynamic.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-entry/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-entry/dynamic.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-entry/dynamic_publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-entry/dynamic_publish_history.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-entry/dynamic_publish_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-entry/dynamic_publish_version.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-entry/dynamic_quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-entry/dynamic_quote.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-entry/sql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-entry/sql.sql -------------------------------------------------------------------------------- /modules/dynamic/dynamic-model/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-model/dynamic.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-model/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-model/render.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-service/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-service/dynamic.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-service/init.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-service/variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-service/variable.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-store/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-store/dynamic.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-store/dynamic_publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-store/dynamic_publish_history.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-store/dynamic_publish_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-store/dynamic_publish_version.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-store/dynamic_quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-store/dynamic_quote.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic-store/init.go -------------------------------------------------------------------------------- /modules/dynamic/dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/dynamic/dynamic.go -------------------------------------------------------------------------------- /modules/email/controller/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/email/controller/email.go -------------------------------------------------------------------------------- /modules/email/controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/email/controller/module.go -------------------------------------------------------------------------------- /modules/email/dto/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/email/dto/email.go -------------------------------------------------------------------------------- /modules/group/group-controller/common_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-controller/common_group.go -------------------------------------------------------------------------------- /modules/group/group-dto/common_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-dto/common_group.go -------------------------------------------------------------------------------- /modules/group/group-entry/common_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-entry/common_group.go -------------------------------------------------------------------------------- /modules/group/group-model/common_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-model/common_group.go -------------------------------------------------------------------------------- /modules/group/group-service/common_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-service/common_group.go -------------------------------------------------------------------------------- /modules/group/group-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-service/init.go -------------------------------------------------------------------------------- /modules/group/group-store/common_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-store/common_group.go -------------------------------------------------------------------------------- /modules/group/group-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group-store/init.go -------------------------------------------------------------------------------- /modules/group/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/group/group.go -------------------------------------------------------------------------------- /modules/grpc-service/service/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/api.go -------------------------------------------------------------------------------- /modules/grpc-service/service/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/api_test.go -------------------------------------------------------------------------------- /modules/grpc-service/service/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/cache.go -------------------------------------------------------------------------------- /modules/grpc-service/service/console_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/console_info.go -------------------------------------------------------------------------------- /modules/grpc-service/service/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/error.go -------------------------------------------------------------------------------- /modules/grpc-service/service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/init.go -------------------------------------------------------------------------------- /modules/grpc-service/service/notice_send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/grpc-service/service/notice_send.go -------------------------------------------------------------------------------- /modules/log/dto/arg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/dto/arg.go -------------------------------------------------------------------------------- /modules/log/dto/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/dto/output.go -------------------------------------------------------------------------------- /modules/log/module/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/client.go -------------------------------------------------------------------------------- /modules/log/module/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/conn.go -------------------------------------------------------------------------------- /modules/log/module/controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/controller.go -------------------------------------------------------------------------------- /modules/log/module/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/download.go -------------------------------------------------------------------------------- /modules/log/module/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/driver.go -------------------------------------------------------------------------------- /modules/log/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/module.go -------------------------------------------------------------------------------- /modules/log/module/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/tail.go -------------------------------------------------------------------------------- /modules/log/module/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/log/module/util.go -------------------------------------------------------------------------------- /modules/mpm3/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/access.go -------------------------------------------------------------------------------- /modules/mpm3/controller/access.go: -------------------------------------------------------------------------------- 1 | package controller 2 | -------------------------------------------------------------------------------- /modules/mpm3/controller/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/controller/driver.go -------------------------------------------------------------------------------- /modules/mpm3/controller/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/controller/frontend.go -------------------------------------------------------------------------------- /modules/mpm3/controller/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/controller/install.go -------------------------------------------------------------------------------- /modules/mpm3/controller/module.go: -------------------------------------------------------------------------------- 1 | package controller 2 | -------------------------------------------------------------------------------- /modules/mpm3/controller/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/controller/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/dto/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/dto/group.go -------------------------------------------------------------------------------- /modules/mpm3/dto/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/dto/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/dto/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/dto/render.go -------------------------------------------------------------------------------- /modules/mpm3/entry/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/access.go -------------------------------------------------------------------------------- /modules/mpm3/entry/enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/enable.go -------------------------------------------------------------------------------- /modules/mpm3/entry/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/frontend.go -------------------------------------------------------------------------------- /modules/mpm3/entry/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/module.go -------------------------------------------------------------------------------- /modules/mpm3/entry/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/package.go -------------------------------------------------------------------------------- /modules/mpm3/entry/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/entry/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/entry/resources.go -------------------------------------------------------------------------------- /modules/mpm3/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/frontend.go -------------------------------------------------------------------------------- /modules/mpm3/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/install.go -------------------------------------------------------------------------------- /modules/mpm3/model/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/model/access.go -------------------------------------------------------------------------------- /modules/mpm3/model/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/model/config.go -------------------------------------------------------------------------------- /modules/mpm3/model/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/model/group.go -------------------------------------------------------------------------------- /modules/mpm3/model/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/model/install.go -------------------------------------------------------------------------------- /modules/mpm3/model/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/model/module.go -------------------------------------------------------------------------------- /modules/mpm3/model/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/model/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/modules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/modules.go -------------------------------------------------------------------------------- /modules/mpm3/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/resources.go -------------------------------------------------------------------------------- /modules/mpm3/service/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/access.go -------------------------------------------------------------------------------- /modules/mpm3/service/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/enum.go -------------------------------------------------------------------------------- /modules/mpm3/service/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/error.go -------------------------------------------------------------------------------- /modules/mpm3/service/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/frontend.go -------------------------------------------------------------------------------- /modules/mpm3/service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/init.go -------------------------------------------------------------------------------- /modules/mpm3/service/install-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/install-cache.go -------------------------------------------------------------------------------- /modules/mpm3/service/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/install.go -------------------------------------------------------------------------------- /modules/mpm3/service/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/module.go -------------------------------------------------------------------------------- /modules/mpm3/service/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/service/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/service/resources.go -------------------------------------------------------------------------------- /modules/mpm3/store/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/access.go -------------------------------------------------------------------------------- /modules/mpm3/store/enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/enable.go -------------------------------------------------------------------------------- /modules/mpm3/store/frontend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/frontend.go -------------------------------------------------------------------------------- /modules/mpm3/store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/init.go -------------------------------------------------------------------------------- /modules/mpm3/store/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/module.go -------------------------------------------------------------------------------- /modules/mpm3/store/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/package.go -------------------------------------------------------------------------------- /modules/mpm3/store/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/plugin.go -------------------------------------------------------------------------------- /modules/mpm3/store/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/mpm3/store/resources.go -------------------------------------------------------------------------------- /modules/namespace/namespace-entry/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-entry/namespace.go -------------------------------------------------------------------------------- /modules/namespace/namespace-mock/namespace_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-mock/namespace_mock.go -------------------------------------------------------------------------------- /modules/namespace/namespace-model/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-model/namespace.go -------------------------------------------------------------------------------- /modules/namespace/namespace-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-service/init.go -------------------------------------------------------------------------------- /modules/namespace/namespace-service/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-service/namespace.go -------------------------------------------------------------------------------- /modules/namespace/namespace-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-store/init.go -------------------------------------------------------------------------------- /modules/namespace/namespace-store/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/namespace-store/namespace.go -------------------------------------------------------------------------------- /modules/namespace/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/namespace/service.go -------------------------------------------------------------------------------- /modules/navigation/navigation-model/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/navigation/navigation-model/navigation.go -------------------------------------------------------------------------------- /modules/navigation/navigation-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/navigation/navigation-service/init.go -------------------------------------------------------------------------------- /modules/navigation/navigation-service/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/navigation/navigation-service/navigation.go -------------------------------------------------------------------------------- /modules/navigation/navigation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/navigation/navigation.go -------------------------------------------------------------------------------- /modules/notice/controller/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/controller/notice.go -------------------------------------------------------------------------------- /modules/notice/controller/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/controller/routers.go -------------------------------------------------------------------------------- /modules/notice/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/driver.go -------------------------------------------------------------------------------- /modules/notice/dto/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/dto/notice.go -------------------------------------------------------------------------------- /modules/notice/notice-entry/notice_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-entry/notice_channel.go -------------------------------------------------------------------------------- /modules/notice/notice-mock/notice_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-mock/notice_mock.go -------------------------------------------------------------------------------- /modules/notice/notice-model/notice_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-model/notice_channel.go -------------------------------------------------------------------------------- /modules/notice/notice-service/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-service/driver.go -------------------------------------------------------------------------------- /modules/notice/notice-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-service/init.go -------------------------------------------------------------------------------- /modules/notice/notice-service/notice_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-service/notice_channel.go -------------------------------------------------------------------------------- /modules/notice/notice-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-store/init.go -------------------------------------------------------------------------------- /modules/notice/notice-store/notice_channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-store/notice_channel.go -------------------------------------------------------------------------------- /modules/notice/notice-store/notice_channel_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-store/notice_channel_stat.go -------------------------------------------------------------------------------- /modules/notice/notice-store/notice_channel_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice-store/notice_channel_version.go -------------------------------------------------------------------------------- /modules/notice/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/notice/notice.go -------------------------------------------------------------------------------- /modules/online/online-dto/common_online.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/online/online-dto/common_online.go -------------------------------------------------------------------------------- /modules/online/service.go: -------------------------------------------------------------------------------- 1 | package online 2 | -------------------------------------------------------------------------------- /modules/openapi/driver/openAPI3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/driver/openAPI3.go -------------------------------------------------------------------------------- /modules/openapi/driver/swagger2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/driver/swagger2.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/api_openAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/api_openAPI.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/cluster.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/module.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/routers.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/strategy.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/strategy/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/strategy/filter.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/strategy/limiting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/strategy/limiting.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/strategy/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/strategy/strategy.go -------------------------------------------------------------------------------- /modules/openapi/open-api-controller/strategy/visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/open-api-controller/strategy/visit.go -------------------------------------------------------------------------------- /modules/openapi/openapi-dto/api_openAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/openapi-dto/api_openAPI.go -------------------------------------------------------------------------------- /modules/openapi/openapi-model/api_openAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/openapi-model/api_openAPI.go -------------------------------------------------------------------------------- /modules/openapi/openapi-service/api_openAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/openapi-service/api_openAPI.go -------------------------------------------------------------------------------- /modules/openapi/openapi-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/openapi-service/init.go -------------------------------------------------------------------------------- /modules/openapi/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapi/openapi.go -------------------------------------------------------------------------------- /modules/openapp/open-app-controller/external_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-controller/external_app.go -------------------------------------------------------------------------------- /modules/openapp/open-app-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-controller/module.go -------------------------------------------------------------------------------- /modules/openapp/open-app-controller/routers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-controller/routers.go -------------------------------------------------------------------------------- /modules/openapp/open-app-dto/external_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-dto/external_app.go -------------------------------------------------------------------------------- /modules/openapp/open-app-entry/external_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-entry/external_app.go -------------------------------------------------------------------------------- /modules/openapp/open-app-model/external-app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-model/external-app.go -------------------------------------------------------------------------------- /modules/openapp/open-app-model/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/open-app-model/swagger.go -------------------------------------------------------------------------------- /modules/openapp/openapp-service/api_import_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/openapp-service/api_import_format.go -------------------------------------------------------------------------------- /modules/openapp/openapp-service/external-app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/openapp-service/external-app.go -------------------------------------------------------------------------------- /modules/openapp/openapp-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/openapp-service/init.go -------------------------------------------------------------------------------- /modules/openapp/openapp-store/external_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/openapp-store/external_app.go -------------------------------------------------------------------------------- /modules/openapp/openapp-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/openapp-store/init.go -------------------------------------------------------------------------------- /modules/openapp/openapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/openapp/openapp.go -------------------------------------------------------------------------------- /modules/plugin/cluster_plugin_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/cluster_plugin_service.go -------------------------------------------------------------------------------- /modules/plugin/plugin-controller/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-controller/cluster_plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-controller/module.go -------------------------------------------------------------------------------- /modules/plugin/plugin-controller/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-controller/plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-dto/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-dto/cluster_plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-dto/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-dto/plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-entry/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-entry/cluster_plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-entry/cluster_plugin_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-entry/cluster_plugin_history.go -------------------------------------------------------------------------------- /modules/plugin/plugin-entry/cluster_plugin_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-entry/cluster_plugin_runtime.go -------------------------------------------------------------------------------- /modules/plugin/plugin-entry/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-entry/plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-entry/plugin_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-entry/plugin_history.go -------------------------------------------------------------------------------- /modules/plugin/plugin-model/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-model/cluster_plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-model/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-model/plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-service/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-service/cluster_plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-service/extender_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-service/extender_cache.go -------------------------------------------------------------------------------- /modules/plugin/plugin-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-service/init.go -------------------------------------------------------------------------------- /modules/plugin/plugin-service/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-service/plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-store/cluster_plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-store/cluster_plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-store/cluster_plugin_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-store/cluster_plugin_history.go -------------------------------------------------------------------------------- /modules/plugin/plugin-store/cluster_plugin_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-store/cluster_plugin_runtime.go -------------------------------------------------------------------------------- /modules/plugin/plugin-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-store/init.go -------------------------------------------------------------------------------- /modules/plugin/plugin-store/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-store/plugin.go -------------------------------------------------------------------------------- /modules/plugin/plugin-store/plugin_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin-store/plugin_history.go -------------------------------------------------------------------------------- /modules/plugin/plugin_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin_service.go -------------------------------------------------------------------------------- /modules/plugin/plugin_timer/extender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin_timer/extender.go -------------------------------------------------------------------------------- /modules/plugin/plugin_timer/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin/plugin_timer/init.go -------------------------------------------------------------------------------- /modules/plugin_template/plugin-template-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin_template/plugin-template-service/init.go -------------------------------------------------------------------------------- /modules/plugin_template/plugin-template-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin_template/plugin-template-store/init.go -------------------------------------------------------------------------------- /modules/plugin_template/plugin_template_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/plugin_template/plugin_template_service.go -------------------------------------------------------------------------------- /modules/random/random-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/random/random-service/init.go -------------------------------------------------------------------------------- /modules/random/random-service/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/random/random-service/random.go -------------------------------------------------------------------------------- /modules/random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/random/random.go -------------------------------------------------------------------------------- /modules/remote_storage/entry/remote_key_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/entry/remote_key_object.go -------------------------------------------------------------------------------- /modules/remote_storage/model/remote_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/model/remote_storage.go -------------------------------------------------------------------------------- /modules/remote_storage/remote_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/remote_storage.go -------------------------------------------------------------------------------- /modules/remote_storage/service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/service/init.go -------------------------------------------------------------------------------- /modules/remote_storage/service/remote_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/service/remote_storage.go -------------------------------------------------------------------------------- /modules/remote_storage/store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/store/init.go -------------------------------------------------------------------------------- /modules/remote_storage/store/remote_storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/remote_storage/store/remote_storage.go -------------------------------------------------------------------------------- /modules/strategy/config/content-type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/config/content-type.go -------------------------------------------------------------------------------- /modules/strategy/config/content-type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/config/content-type.yml -------------------------------------------------------------------------------- /modules/strategy/config/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/config/metrics.go -------------------------------------------------------------------------------- /modules/strategy/config/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/config/strategy.go -------------------------------------------------------------------------------- /modules/strategy/config/strategy_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/config/strategy_status.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/module-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/module-cache.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/module-data-mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/module-data-mask.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/module-fuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/module-fuse.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/module-grey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/module-grey.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/module-traffic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/module-traffic.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/module-visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/module-visit.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/stragety-traffic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/stragety-traffic.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy-cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy-cache.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy-common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy-common.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy-data-mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy-data-mask.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy-fuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy-fuse.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy-grey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy-grey.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy-visit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy-visit.go -------------------------------------------------------------------------------- /modules/strategy/strategy-controller/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-controller/strategy.go -------------------------------------------------------------------------------- /modules/strategy/strategy-dto/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-dto/strategy.go -------------------------------------------------------------------------------- /modules/strategy/strategy-entry/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-entry/strategy.go -------------------------------------------------------------------------------- /modules/strategy/strategy-entry/strategy_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-entry/strategy_history.go -------------------------------------------------------------------------------- /modules/strategy/strategy-entry/strategy_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-entry/strategy_runtime.go -------------------------------------------------------------------------------- /modules/strategy/strategy-entry/strategy_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-entry/strategy_stat.go -------------------------------------------------------------------------------- /modules/strategy/strategy-entry/strategy_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-entry/strategy_version.go -------------------------------------------------------------------------------- /modules/strategy/strategy-model/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-model/strategy.go -------------------------------------------------------------------------------- /modules/strategy/strategy-service/filters.go: -------------------------------------------------------------------------------- 1 | package strategy_service 2 | 3 | type IFilterHandler interface { 4 | } 5 | -------------------------------------------------------------------------------- /modules/strategy/strategy-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-service/init.go -------------------------------------------------------------------------------- /modules/strategy/strategy-service/strategy-common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-service/strategy-common.go -------------------------------------------------------------------------------- /modules/strategy/strategy-service/strategy-handler/fuse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-service/strategy-handler/fuse.go -------------------------------------------------------------------------------- /modules/strategy/strategy-service/strategy-handler/grey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-service/strategy-handler/grey.go -------------------------------------------------------------------------------- /modules/strategy/strategy-service/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-service/strategy.go -------------------------------------------------------------------------------- /modules/strategy/strategy-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-store/init.go -------------------------------------------------------------------------------- /modules/strategy/strategy-store/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-store/strategy.go -------------------------------------------------------------------------------- /modules/strategy/strategy-store/strategy_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-store/strategy_history.go -------------------------------------------------------------------------------- /modules/strategy/strategy-store/strategy_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-store/strategy_runtime.go -------------------------------------------------------------------------------- /modules/strategy/strategy-store/strategy_stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-store/strategy_stat.go -------------------------------------------------------------------------------- /modules/strategy/strategy-store/strategy_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy-store/strategy_version.go -------------------------------------------------------------------------------- /modules/strategy/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/strategy/strategy.go -------------------------------------------------------------------------------- /modules/system/service/data-key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/service/data-key.go -------------------------------------------------------------------------------- /modules/system/service/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/service/data.go -------------------------------------------------------------------------------- /modules/system/service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/service/init.go -------------------------------------------------------------------------------- /modules/system/service/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/service/system.go -------------------------------------------------------------------------------- /modules/system/system-entry/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/system-entry/system_info.go -------------------------------------------------------------------------------- /modules/system/system-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/system-store/init.go -------------------------------------------------------------------------------- /modules/system/system-store/system_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/system-store/system_info.go -------------------------------------------------------------------------------- /modules/system/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/system/system.go -------------------------------------------------------------------------------- /modules/user/user-dto/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-dto/user_info.go -------------------------------------------------------------------------------- /modules/user/user-entry/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-entry/user_info.go -------------------------------------------------------------------------------- /modules/user/user-mock/user_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-mock/user_mock.go -------------------------------------------------------------------------------- /modules/user/user-model/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-model/user_info.go -------------------------------------------------------------------------------- /modules/user/user-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-service/init.go -------------------------------------------------------------------------------- /modules/user/user-service/user_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-service/user_cache.go -------------------------------------------------------------------------------- /modules/user/user-service/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-service/user_info.go -------------------------------------------------------------------------------- /modules/user/user-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-store/init.go -------------------------------------------------------------------------------- /modules/user/user-store/user_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user-store/user_info.go -------------------------------------------------------------------------------- /modules/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/user/user.go -------------------------------------------------------------------------------- /modules/variable/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/service.go -------------------------------------------------------------------------------- /modules/variable/variable-controller/cluster_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-controller/cluster_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-controller/global_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-controller/global_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-controller/module.go -------------------------------------------------------------------------------- /modules/variable/variable-dto/global_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-dto/global_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-entry/variable_cluster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-entry/variable_cluster.go -------------------------------------------------------------------------------- /modules/variable/variable-entry/variable_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-entry/variable_history.go -------------------------------------------------------------------------------- /modules/variable/variable-entry/variable_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-entry/variable_runtime.go -------------------------------------------------------------------------------- /modules/variable/variable-entry/variable_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-entry/variable_version.go -------------------------------------------------------------------------------- /modules/variable/variable-entry/variables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-entry/variables.go -------------------------------------------------------------------------------- /modules/variable/variable-model/cluster_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-model/cluster_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-model/global_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-model/global_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-service/cluster_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-service/cluster_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-service/global_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-service/global_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-service/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-service/init.go -------------------------------------------------------------------------------- /modules/variable/variable-store/cluster_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-store/cluster_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-store/global_variable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-store/global_variable.go -------------------------------------------------------------------------------- /modules/variable/variable-store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-store/init.go -------------------------------------------------------------------------------- /modules/variable/variable-store/variable_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-store/variable_history.go -------------------------------------------------------------------------------- /modules/variable/variable-store/variable_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/variable/variable-store/variable_runtime.go -------------------------------------------------------------------------------- /modules/webhook/controller/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/webhook/controller/module.go -------------------------------------------------------------------------------- /modules/webhook/controller/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/webhook/controller/webhook.go -------------------------------------------------------------------------------- /modules/webhook/dto/webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/modules/webhook/dto/webhook.go -------------------------------------------------------------------------------- /plugin/go-plugin/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/.gitignore -------------------------------------------------------------------------------- /plugin/go-plugin/example/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/client.go -------------------------------------------------------------------------------- /plugin/go-plugin/example/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/config.yml -------------------------------------------------------------------------------- /plugin/go-plugin/example/plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/plugin/.gitignore -------------------------------------------------------------------------------- /plugin/go-plugin/example/plugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/plugin/main.go -------------------------------------------------------------------------------- /plugin/go-plugin/example/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/plugin/plugin.go -------------------------------------------------------------------------------- /plugin/go-plugin/example/plugin/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/example/plugin/service.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin-client/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin-client/api.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin-client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin-client/client.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin-client/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin-client/cmd.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/config.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/logger.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/plugin.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/response.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/server.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/server_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/server_keys.go -------------------------------------------------------------------------------- /plugin/go-plugin/plugin/tool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/plugin/tool.go -------------------------------------------------------------------------------- /plugin/go-plugin/proto/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/proto/gen.go -------------------------------------------------------------------------------- /plugin/go-plugin/proto/plugin.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/proto/plugin.pb.go -------------------------------------------------------------------------------- /plugin/go-plugin/proto/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/proto/plugin.proto -------------------------------------------------------------------------------- /plugin/go-plugin/proto/plugin_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/proto/plugin_grpc.pb.go -------------------------------------------------------------------------------- /plugin/go-plugin/shared/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/shared/config.go -------------------------------------------------------------------------------- /plugin/go-plugin/shared/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/go-plugin/shared/handler.go -------------------------------------------------------------------------------- /plugin/local/cmd_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/cmd_unix.go -------------------------------------------------------------------------------- /plugin/local/cmd_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/cmd_win.go -------------------------------------------------------------------------------- /plugin/local/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/config.go -------------------------------------------------------------------------------- /plugin/local/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/define.go -------------------------------------------------------------------------------- /plugin/local/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/driver.go -------------------------------------------------------------------------------- /plugin/local/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/module.go -------------------------------------------------------------------------------- /plugin/local/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/local/plugin.go -------------------------------------------------------------------------------- /plugin/remote/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/remote/config.go -------------------------------------------------------------------------------- /plugin/remote/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/remote/define.go -------------------------------------------------------------------------------- /plugin/remote/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/remote/driver.go -------------------------------------------------------------------------------- /plugin/remote/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/remote/module.go -------------------------------------------------------------------------------- /plugin/remote/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/remote/plugin.go -------------------------------------------------------------------------------- /plugin/remote/remote_apis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/plugin/remote/remote_apis.go -------------------------------------------------------------------------------- /pm3/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/api.go -------------------------------------------------------------------------------- /pm3/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/base.go -------------------------------------------------------------------------------- /pm3/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/driver.go -------------------------------------------------------------------------------- /pm3/embed_registry/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/embed_registry/load.go -------------------------------------------------------------------------------- /pm3/embed_registry/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/embed_registry/plugin.go -------------------------------------------------------------------------------- /pm3/embed_registry/resources.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/embed_registry/resources.go -------------------------------------------------------------------------------- /pm3/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/install.go -------------------------------------------------------------------------------- /pm3/middleware/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/middleware/check.go -------------------------------------------------------------------------------- /pm3/middleware/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/middleware/handler.go -------------------------------------------------------------------------------- /pm3/middleware/multiple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/middleware/multiple.go -------------------------------------------------------------------------------- /pm3/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/module.go -------------------------------------------------------------------------------- /pm3/pinstall/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/pinstall/read.go -------------------------------------------------------------------------------- /pm3/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/provider.go -------------------------------------------------------------------------------- /pm3/read-info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/pm3/read-info.go -------------------------------------------------------------------------------- /report/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/report/env.go -------------------------------------------------------------------------------- /report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/report/report.go -------------------------------------------------------------------------------- /scripts/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/Dockerfile -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /scripts/resource/.gitignore: -------------------------------------------------------------------------------- 1 | /dashboard2.x-3.5 2 | -------------------------------------------------------------------------------- /scripts/resource/config.yml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/resource/config.yml.tpl -------------------------------------------------------------------------------- /scripts/resource/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/resource/docker_run.sh -------------------------------------------------------------------------------- /scripts/resource/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/resource/install.sh -------------------------------------------------------------------------------- /scripts/resource/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/scripts/resource/run.sh -------------------------------------------------------------------------------- /store/base_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/base_history.go -------------------------------------------------------------------------------- /store/base_publish_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/base_publish_history.go -------------------------------------------------------------------------------- /store/base_runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/base_runtime.go -------------------------------------------------------------------------------- /store/basekind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/basekind.go -------------------------------------------------------------------------------- /store/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/init.go -------------------------------------------------------------------------------- /store/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/page.go -------------------------------------------------------------------------------- /store/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/register.go -------------------------------------------------------------------------------- /store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/store.go -------------------------------------------------------------------------------- /store/store_mysql/db-mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eolinker/apinto-dashboard/HEAD/store/store_mysql/db-mysql.go --------------------------------------------------------------------------------