├── .env.houyi.example ├── .env.laurel.example ├── .env.palace.example ├── .env.rabbit.example ├── .github └── workflows │ ├── check.yml │ ├── image-builder.yml │ ├── image-deploy.yml │ └── image-server-palace.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── LICENSE ├── Makefile ├── PROJECT_GUIDE.md ├── README.md ├── cmd ├── houyi │ ├── config │ │ ├── auth.yaml │ │ ├── cache.yaml │ │ ├── config.yaml │ │ ├── evaluate.yaml │ │ ├── event_bus.yaml │ │ ├── i18n.yaml │ │ ├── log.yaml │ │ └── server.yaml │ ├── internal │ │ ├── biz │ │ │ ├── alert.go │ │ │ ├── bo │ │ │ │ ├── alert.go │ │ │ │ ├── datasource_metric.go │ │ │ │ ├── strategy.go │ │ │ │ ├── strategy_metric.go │ │ │ │ └── team.go │ │ │ ├── config.go │ │ │ ├── do │ │ │ │ ├── alert.go │ │ │ │ ├── auth.go │ │ │ │ ├── datasource_metric.go │ │ │ │ ├── metric.go │ │ │ │ ├── notice.go │ │ │ │ └── strategy_metric.go │ │ │ ├── event │ │ │ │ ├── alert_job.go │ │ │ │ └── strategy_metric_job.go │ │ │ ├── event_bus.go │ │ │ ├── health.go │ │ │ ├── metric.go │ │ │ ├── provider_set.go │ │ │ ├── register.go │ │ │ ├── repository │ │ │ │ ├── alert.go │ │ │ │ ├── cache.go │ │ │ │ ├── config.go │ │ │ │ ├── event_bus.go │ │ │ │ ├── health.go │ │ │ │ ├── judge.go │ │ │ │ ├── metric.go │ │ │ │ └── palace.go │ │ │ ├── strategy.go │ │ │ └── vobj │ │ │ │ ├── cache.go │ │ │ │ └── key.go │ │ ├── conf │ │ │ ├── conf.go │ │ │ └── conf.proto │ │ ├── data │ │ │ ├── data.go │ │ │ ├── impl │ │ │ │ ├── alert.go │ │ │ │ ├── cache.go │ │ │ │ ├── config.go │ │ │ │ ├── event_bus.go │ │ │ │ ├── judge.go │ │ │ │ ├── judge │ │ │ │ │ ├── condition │ │ │ │ │ │ └── metric.go │ │ │ │ │ └── metric.go │ │ │ │ ├── metric.go │ │ │ │ ├── ping.go │ │ │ │ └── provider_set.go │ │ │ ├── rpc │ │ │ │ ├── callback.go │ │ │ │ ├── provider_set.go │ │ │ │ └── server_register.go │ │ │ └── server.go │ │ ├── helper │ │ │ └── middleware │ │ │ │ ├── jwt.go │ │ │ │ └── jwt_test.go │ │ ├── server │ │ │ ├── cron_alert_job.go │ │ │ ├── cron_strategy_job.go │ │ │ ├── event_bus.go │ │ │ ├── grpc.go │ │ │ ├── http.go │ │ │ ├── load_ticker.go │ │ │ ├── server.go │ │ │ ├── swagger │ │ │ │ ├── index.html │ │ │ │ ├── logo.svg │ │ │ │ ├── openapi.yaml │ │ │ │ └── rapidoc-min.js │ │ │ └── ticker.go │ │ └── service │ │ │ ├── alert.go │ │ │ ├── build │ │ │ ├── auth.go │ │ │ ├── datasource_metric.go │ │ │ ├── label_notice.go │ │ │ ├── query.go │ │ │ └── strategy_metric.go │ │ │ ├── event_bus.go │ │ │ ├── health.go │ │ │ ├── load.go │ │ │ ├── provider_set.go │ │ │ ├── query.go │ │ │ └── sync.go │ ├── main.go │ └── wire.go ├── laurel │ ├── config │ │ ├── auth.yaml │ │ ├── i18n.yaml │ │ ├── log.yaml │ │ ├── metric.yaml │ │ ├── scrape.yaml │ │ ├── scripts.yaml │ │ └── server.yaml │ ├── internal │ │ ├── biz │ │ │ ├── bo │ │ │ │ ├── metric.go │ │ │ │ ├── scrape.go │ │ │ │ ├── scrape_test.go │ │ │ │ └── scripts.go │ │ │ ├── health.go │ │ │ ├── job │ │ │ │ ├── load_file.go │ │ │ │ ├── scrape_job.go │ │ │ │ └── script_job.go │ │ │ ├── metric.go │ │ │ ├── provider_set.go │ │ │ ├── register.go │ │ │ ├── repository │ │ │ │ ├── cache.go │ │ │ │ ├── event_bus.go │ │ │ │ ├── health.go │ │ │ │ ├── metrics.go │ │ │ │ ├── register.go │ │ │ │ ├── script.go │ │ │ │ └── server_register.go │ │ │ ├── script.go │ │ │ └── vobj │ │ │ │ ├── cache.go │ │ │ │ ├── file_type.go │ │ │ │ └── metric_type.go │ │ ├── conf │ │ │ ├── conf.go │ │ │ └── conf.proto │ │ ├── data │ │ │ ├── data.go │ │ │ ├── export │ │ │ │ ├── metrics.go │ │ │ │ └── metrics_test.go │ │ │ ├── impl │ │ │ │ ├── cache.go │ │ │ │ ├── event_bus.go │ │ │ │ ├── ping.go │ │ │ │ ├── provider_set.go │ │ │ │ ├── register.go │ │ │ │ └── script.go │ │ │ └── rpc │ │ │ │ ├── provider_set.go │ │ │ │ └── server_register.go │ │ ├── helper │ │ │ └── middleware │ │ │ │ ├── jwt.go │ │ │ │ └── jwt_test.go │ │ ├── server │ │ │ ├── cron_script.go │ │ │ ├── grpc.go │ │ │ ├── http.go │ │ │ ├── server.go │ │ │ ├── swagger │ │ │ │ ├── index.html │ │ │ │ ├── logo.svg │ │ │ │ ├── openapi.yaml │ │ │ │ └── rapidoc-min.js │ │ │ └── ticker.go │ │ └── service │ │ │ ├── build │ │ │ └── metric.go │ │ │ ├── health.go │ │ │ ├── metric.go │ │ │ ├── provider_set.go │ │ │ └── script.go │ ├── main.go │ └── wire.go ├── palace │ ├── config │ │ ├── auth.yaml │ │ ├── crypto.yaml │ │ ├── data.yaml │ │ ├── email.yaml │ │ ├── i18n.yaml │ │ ├── log.yaml │ │ └── server.yaml │ ├── internal │ │ ├── biz │ │ │ ├── auth.go │ │ │ ├── bo │ │ │ │ ├── alert.go │ │ │ │ ├── audit.go │ │ │ │ ├── auth.go │ │ │ │ ├── dashboard.go │ │ │ │ ├── dashboard_chart.go │ │ │ │ ├── dict.go │ │ │ │ ├── email.go │ │ │ │ ├── log.go │ │ │ │ ├── menu.go │ │ │ │ ├── message.go │ │ │ │ ├── oauth.go │ │ │ │ ├── page.go │ │ │ │ ├── permission.go │ │ │ │ ├── role.go │ │ │ │ ├── select.go │ │ │ │ ├── server.go │ │ │ │ ├── sms.go │ │ │ │ ├── sync.go │ │ │ │ ├── team.go │ │ │ │ ├── team_datasource.go │ │ │ │ ├── team_hook.go │ │ │ │ ├── team_notice.go │ │ │ │ ├── team_strategy.go │ │ │ │ ├── team_strategy_group.go │ │ │ │ ├── team_strategy_metric.go │ │ │ │ ├── team_strategy_metric_level.go │ │ │ │ ├── time_engine.go │ │ │ │ └── user.go │ │ │ ├── do │ │ │ │ ├── auth.go │ │ │ │ ├── base.go │ │ │ │ ├── event │ │ │ │ │ ├── a.go │ │ │ │ │ ├── realtime.go │ │ │ │ │ ├── realtime_test.go │ │ │ │ │ └── send_message_log.go │ │ │ │ ├── log.go │ │ │ │ ├── menu.go │ │ │ │ ├── realtime.go │ │ │ │ ├── role.go │ │ │ │ ├── system │ │ │ │ │ ├── a.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── menu.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── send_message_log.go │ │ │ │ │ ├── team.go │ │ │ │ │ ├── team_audit.go │ │ │ │ │ ├── team_invite_link.go │ │ │ │ │ ├── team_invite_user.go │ │ │ │ │ ├── team_member.go │ │ │ │ │ ├── team_role.go │ │ │ │ │ ├── user.go │ │ │ │ │ ├── user_config_table.go │ │ │ │ │ ├── user_config_theme.go │ │ │ │ │ ├── user_oauth.go │ │ │ │ │ └── user_test.go │ │ │ │ ├── team.go │ │ │ │ ├── team │ │ │ │ │ ├── a.go │ │ │ │ │ ├── cofnig_sms.go │ │ │ │ │ ├── config_email.go │ │ │ │ │ ├── dashboard.go │ │ │ │ │ ├── dashboard_chart.go │ │ │ │ │ ├── datasource_metric.go │ │ │ │ │ ├── datasource_metric_metadata.go │ │ │ │ │ ├── dict.go │ │ │ │ │ ├── log.go │ │ │ │ │ ├── notice_group.go │ │ │ │ │ ├── notice_hook.go │ │ │ │ │ ├── notice_member.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ ├── strategy_group.go │ │ │ │ │ ├── strategy_metric.go │ │ │ │ │ ├── strategy_metric_rule.go │ │ │ │ │ ├── strategy_metric_rule_label_notice.go │ │ │ │ │ ├── strategy_subscriber.go │ │ │ │ │ ├── time_engine.go │ │ │ │ │ └── time_engine_rule.go │ │ │ │ ├── team_config_email.go │ │ │ │ ├── team_config_sms.go │ │ │ │ ├── team_dashboard.go │ │ │ │ ├── team_datasource.go │ │ │ │ ├── team_dict.go │ │ │ │ ├── team_member.go │ │ │ │ ├── team_notice.go │ │ │ │ ├── team_role.go │ │ │ │ ├── team_strategy.go │ │ │ │ ├── team_strategy_subscribers.go │ │ │ │ ├── team_time_engine.go │ │ │ │ ├── user.go │ │ │ │ ├── user_config_table.go │ │ │ │ └── user_config_theme.go │ │ │ ├── eventbus.go │ │ │ ├── job │ │ │ │ ├── menu.go │ │ │ │ ├── team.go │ │ │ │ ├── team_member.go │ │ │ │ └── user.go │ │ │ ├── logs.go │ │ │ ├── menu.go │ │ │ ├── message.go │ │ │ ├── permission.go │ │ │ ├── provider_set.go │ │ │ ├── repository │ │ │ │ ├── audit.go │ │ │ │ ├── cache.go │ │ │ │ ├── captcha.go │ │ │ │ ├── dashboard.go │ │ │ │ ├── eventbus.go │ │ │ │ ├── houyi.go │ │ │ │ ├── invite.go │ │ │ │ ├── log.go │ │ │ │ ├── member.go │ │ │ │ ├── menu.go │ │ │ │ ├── message.go │ │ │ │ ├── oauth.go │ │ │ │ ├── rabbit.go │ │ │ │ ├── realtime.go │ │ │ │ ├── role.go │ │ │ │ ├── server.go │ │ │ │ ├── team.go │ │ │ │ ├── team_config_email.go │ │ │ │ ├── team_config_sms.go │ │ │ │ ├── team_datasource.go │ │ │ │ ├── team_dict.go │ │ │ │ ├── team_hook.go │ │ │ │ ├── team_notice.go │ │ │ │ ├── team_strategy.go │ │ │ │ ├── team_strategy_group.go │ │ │ │ ├── time_engine.go │ │ │ │ ├── transaction.go │ │ │ │ └── user.go │ │ │ ├── server.go │ │ │ ├── system.go │ │ │ ├── team.go │ │ │ ├── team_dashboard.go │ │ │ ├── team_datasource.go │ │ │ ├── team_datasource_query.go │ │ │ ├── team_dict.go │ │ │ ├── team_hook.go │ │ │ ├── team_notice.go │ │ │ ├── team_realtime.go │ │ │ ├── team_strategy.go │ │ │ ├── team_strategy_group.go │ │ │ ├── team_strategy_metric.go │ │ │ ├── time_engine.go │ │ │ ├── user.go │ │ │ └── vobj │ │ │ │ ├── action_audit.go │ │ │ │ ├── condition_metric.go │ │ │ │ ├── datasource_driver_metric.go │ │ │ │ ├── gender.go │ │ │ │ ├── hook_app.go │ │ │ │ ├── http_method.go │ │ │ │ ├── oauth_app.go │ │ │ │ ├── oauth_from.go │ │ │ │ ├── position.go │ │ │ │ ├── sample_mode.go │ │ │ │ ├── status_alert.go │ │ │ │ ├── status_audit.go │ │ │ │ ├── status_global.go │ │ │ │ ├── status_member.go │ │ │ │ ├── status_send_message.go │ │ │ │ ├── status_team.go │ │ │ │ ├── status_user.go │ │ │ │ ├── team_capacity.go │ │ │ │ ├── theme_layout.go │ │ │ │ ├── theme_mode.go │ │ │ │ ├── type_changed.go │ │ │ │ ├── type_datasource.go │ │ │ │ ├── type_dict.go │ │ │ │ ├── type_menu.go │ │ │ │ ├── type_menu_category.go │ │ │ │ ├── type_menu_process.go │ │ │ │ ├── type_message.go │ │ │ │ ├── type_notice.go │ │ │ │ ├── type_provider_sms.go │ │ │ │ ├── type_server.go │ │ │ │ ├── type_strategy.go │ │ │ │ ├── type_time_engine_rule.go │ │ │ │ └── type_user_config.go │ │ ├── conf │ │ │ ├── conf.go │ │ │ └── conf.proto │ │ ├── data │ │ │ ├── .gitignore │ │ │ ├── data.go │ │ │ ├── impl │ │ │ │ ├── audit.go │ │ │ │ ├── build │ │ │ │ │ ├── base.go │ │ │ │ │ ├── datasource.go │ │ │ │ │ ├── dict.go │ │ │ │ │ ├── member.go │ │ │ │ │ ├── menus.go │ │ │ │ │ ├── notice.go │ │ │ │ │ ├── role.go │ │ │ │ │ ├── strategy.go │ │ │ │ │ ├── team.go │ │ │ │ │ ├── time_engine.go │ │ │ │ │ └── user.go │ │ │ │ ├── cache.go │ │ │ │ ├── captcha.go │ │ │ │ ├── error.go │ │ │ │ ├── eventbus.go │ │ │ │ ├── invite.go │ │ │ │ ├── log.go │ │ │ │ ├── menu.go │ │ │ │ ├── message.go │ │ │ │ ├── oauth.go │ │ │ │ ├── provider_set.go │ │ │ │ ├── realtime.go │ │ │ │ ├── role.go │ │ │ │ ├── send_message_log.go │ │ │ │ ├── server.go │ │ │ │ ├── team.go │ │ │ │ ├── team_config_email.go │ │ │ │ ├── team_config_sms.go │ │ │ │ ├── team_dashboard.go │ │ │ │ ├── team_dashboard_chart.go │ │ │ │ ├── team_datasource_metric.go │ │ │ │ ├── team_datasource_metric_metadata.go │ │ │ │ ├── team_dict.go │ │ │ │ ├── team_hook.go │ │ │ │ ├── team_member.go │ │ │ │ ├── team_notice.go │ │ │ │ ├── team_role.go │ │ │ │ ├── team_strategy.go │ │ │ │ ├── team_strategy_group.go │ │ │ │ ├── team_strategy_metric.go │ │ │ │ ├── team_strategy_metric_level.go │ │ │ │ ├── template │ │ │ │ │ ├── password_changed.html │ │ │ │ │ ├── team_invite_user.html │ │ │ │ │ ├── verify_email.html │ │ │ │ │ └── welcome.html │ │ │ │ ├── time_engine.go │ │ │ │ ├── time_engine_rule.go │ │ │ │ ├── transaction.go │ │ │ │ └── user.go │ │ │ └── rpc │ │ │ │ ├── houyi.go │ │ │ │ ├── provider_set.go │ │ │ │ └── rabbit.go │ │ ├── helper │ │ │ └── middleware │ │ │ │ ├── header.go │ │ │ │ ├── jwt.go │ │ │ │ ├── jwt_test.go │ │ │ │ ├── operate_log.go │ │ │ │ └── permission.go │ │ ├── server │ │ │ ├── event.go │ │ │ ├── grpc.go │ │ │ ├── http.go │ │ │ ├── http_portal.go │ │ │ ├── server.go │ │ │ ├── swagger │ │ │ │ ├── index.html │ │ │ │ ├── logo.svg │ │ │ │ ├── openapi.yaml │ │ │ │ └── rapidoc-min.js │ │ │ └── ticker.go │ │ └── service │ │ │ ├── alert.go │ │ │ ├── auth.go │ │ │ ├── build │ │ │ ├── alert.go │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── common.go │ │ │ ├── dashboard.go │ │ │ ├── datasource.go │ │ │ ├── dict.go │ │ │ ├── email.go │ │ │ ├── health.go │ │ │ ├── hook.go │ │ │ ├── log.go │ │ │ ├── menu.go │ │ │ ├── message.go │ │ │ ├── notice.go │ │ │ ├── role.go │ │ │ ├── select.go │ │ │ ├── server.go │ │ │ ├── sms.go │ │ │ ├── status.go │ │ │ ├── strategy.go │ │ │ ├── strategy_group.go │ │ │ ├── team.go │ │ │ ├── time_engine.go │ │ │ └── user.go │ │ │ ├── callback.go │ │ │ ├── health.go │ │ │ ├── load.go │ │ │ ├── menu.go │ │ │ ├── portal │ │ │ ├── auth.go │ │ │ ├── home.go │ │ │ ├── pricing.go │ │ │ └── provider_set.go │ │ │ ├── provider_set.go │ │ │ ├── server.go │ │ │ ├── system.go │ │ │ ├── team.go │ │ │ ├── teamdashboard.go │ │ │ ├── teamdatasource.go │ │ │ ├── teamdict.go │ │ │ ├── teamlog.go │ │ │ ├── teamnotice.go │ │ │ ├── teamstrategy.go │ │ │ ├── teamstrategymetric.go │ │ │ ├── timeengine.go │ │ │ └── user.go │ ├── main.go │ ├── migrate │ │ ├── auto_migrate │ │ │ └── migrate.go │ │ └── gen │ │ │ └── gen.go │ └── wire.go └── rabbit │ ├── config │ ├── auth.yaml │ ├── data.yaml │ ├── email.yaml │ ├── hook.yaml │ ├── i18n.yaml │ ├── log.yaml │ ├── notice_group.yaml │ ├── server.yaml │ └── sms.yaml │ ├── internal │ ├── biz │ │ ├── alert.go │ │ ├── bo │ │ │ ├── alerts.go │ │ │ ├── config.go │ │ │ ├── email.go │ │ │ ├── hook.go │ │ │ ├── notice_group.go │ │ │ ├── sms.go │ │ │ └── user.go │ │ ├── config.go │ │ ├── do │ │ │ ├── email_config.go │ │ │ ├── hook_config.go │ │ │ ├── notice_group_config.go │ │ │ ├── notice_user_config.go │ │ │ └── sms_config.go │ │ ├── email.go │ │ ├── health.go │ │ ├── hook.go │ │ ├── lock.go │ │ ├── provider_set.go │ │ ├── register.go │ │ ├── repository │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── health.go │ │ │ ├── send.go │ │ │ └── server_register.go │ │ ├── sms.go │ │ └── vobj │ │ │ ├── app.go │ │ │ ├── cache.go │ │ │ └── sms_type.go │ ├── conf │ │ ├── conf.go │ │ └── conf.proto │ ├── data │ │ ├── data.go │ │ ├── impl │ │ │ ├── cache.go │ │ │ ├── config.go │ │ │ ├── ping.go │ │ │ ├── provider_set.go │ │ │ └── send.go │ │ └── rpc │ │ │ ├── provider_set.go │ │ │ └── server_register.go │ ├── helper │ │ ├── README.md │ │ └── middleware │ │ │ ├── jwt.go │ │ │ └── jwt_test.go │ ├── server │ │ ├── grpc.go │ │ ├── http.go │ │ ├── server.go │ │ ├── swagger │ │ │ ├── index.html │ │ │ ├── logo.svg │ │ │ ├── openapi.yaml │ │ │ └── rapidoc-min.js │ │ └── ticker.go │ └── service │ │ ├── alert.go │ │ ├── build │ │ ├── alert.go │ │ ├── app.go │ │ └── sync.go │ │ ├── health.go │ │ ├── provider_set.go │ │ ├── send.go │ │ └── sync.go │ ├── main.go │ └── wire.go ├── deploy ├── base │ ├── DockerfileBuilder │ └── DockerfileDeploy ├── etcd │ ├── .gitignore │ └── docker-compose.yml ├── mysql │ ├── .gitignore │ ├── docker-compose.yml │ └── my.cnf ├── prometheus │ ├── .gitignore │ ├── config │ │ └── prometheus.yml │ ├── docker-compose.yml │ └── k8s │ │ ├── node-exporter.yaml │ │ └── prometheus-config.yaml ├── redis │ ├── .gitignore │ ├── conf │ │ └── redis.conf │ └── docker-compose.yml ├── server │ └── Dockerfile └── victoriametric │ ├── .gitignore │ └── docker-compose.yml ├── docs ├── .ai │ └── SOP.zh-CN.md ├── README.zh-CN.md ├── dev │ ├── COMMIT.md │ ├── COMMIT.zh-CN.md │ ├── DEV.md │ ├── DEV.zh-CN.md │ ├── GOPHER.md │ └── GOPHER.zh-CN.md ├── images │ └── logo.svg └── ui │ ├── README.md │ └── index.html ├── go.mod ├── go.sum ├── i18n ├── en.toml ├── ja.toml └── zh.toml ├── pkg ├── hello │ ├── env.go │ ├── hello.go │ └── hello_test.go ├── i18n │ ├── config.go │ ├── i18n.go │ └── message.go ├── log │ ├── log.go │ └── sugared.go ├── metric │ ├── handle.go │ ├── metric.go │ ├── option.go │ ├── route.go │ └── server.go ├── middler │ ├── allow.go │ ├── cors.go │ ├── limit.go │ ├── metadata.go │ ├── permission │ │ └── permission.go │ └── validate.go ├── plugin │ ├── cache │ │ ├── cache.go │ │ ├── cache_test.go │ │ ├── key.go │ │ └── redis.go │ ├── command │ │ ├── command.go │ │ ├── command_test.go │ │ └── file.go │ ├── datasource │ │ ├── auth.go │ │ ├── datasource.go │ │ ├── metric.go │ │ ├── prometheus │ │ │ ├── params.go │ │ │ ├── prometheus.go │ │ │ └── prometheus_test.go │ │ └── victoria │ │ │ ├── params.go │ │ │ ├── victoria_metrics.go │ │ │ └── victoria_metrics_test.go │ ├── email │ │ ├── config.go │ │ ├── email.go │ │ └── mock.go │ ├── gorm │ │ ├── gorm.go │ │ └── log.go │ ├── hook │ │ ├── dingtalk │ │ │ └── dingtalk.go │ │ ├── feishu │ │ │ └── feishu.go │ │ ├── hook.go │ │ ├── message.go │ │ ├── other │ │ │ └── other.go │ │ └── wechat │ │ │ └── wechat.go │ ├── registry │ │ ├── discovery.go │ │ └── registrar.go │ ├── server │ │ ├── client.go │ │ ├── cron_server │ │ │ ├── cron.go │ │ │ ├── cron_test.go │ │ │ └── doc.go │ │ ├── mcp_server │ │ │ └── README.md │ │ ├── server.go │ │ └── ticker_server │ │ │ ├── REDEME.md │ │ │ ├── doc.go │ │ │ ├── ticker.go │ │ │ └── ticker_test.go │ ├── sms │ │ ├── alicloud │ │ │ ├── aliyun.go │ │ │ ├── env.go │ │ │ └── option.go │ │ └── sms.go │ └── storage │ │ ├── alicloud │ │ ├── .env.example │ │ ├── .gitignore │ │ ├── oss.go │ │ └── oss_test.go │ │ ├── local │ │ ├── .gitignore │ │ ├── api.go │ │ ├── local.go │ │ └── local_test.go │ │ └── storage.go └── util │ ├── captcha │ ├── captcha.go │ └── store.go │ ├── cnst │ ├── header.go │ ├── label.go │ └── metadata.go │ ├── condense │ ├── gzip.go │ └── gzip_test.go │ ├── conn │ ├── consul.go │ └── etcd.go │ ├── crypto │ ├── aes.go │ ├── aes_test.go │ ├── object.go │ ├── object_test.go │ ├── options.go │ ├── string.go │ └── string_test.go │ ├── docs │ └── docs.go │ ├── hash │ ├── md5.go │ └── md5_test.go │ ├── httpx │ ├── client.go │ ├── params.go │ └── post.go │ ├── ips │ ├── ip.go │ └── ip_test.go │ ├── kv │ ├── label │ │ ├── annotation.go │ │ ├── annotation_test.go │ │ ├── label.go │ │ └── label_test.go │ ├── map.go │ ├── map_test.go │ └── string.go │ ├── load │ ├── config.go │ └── load.go │ ├── password │ ├── new.go │ ├── new_test.go │ ├── password.go │ ├── password_test.go │ ├── random.go │ └── random_test.go │ ├── pointer │ ├── pointer.go │ └── pointer_test.go │ ├── queue │ └── ringbuffer │ │ ├── ringbuffer.go │ │ └── ringbuffer_test.go │ ├── safety │ ├── ctx.go │ ├── ctx_test.go │ ├── go.go │ ├── map.go │ ├── map_test.go │ ├── slice.go │ └── slice_test.go │ ├── slices │ └── slice.go │ ├── strutil │ ├── mask.go │ ├── mask_test.go │ ├── string.go │ └── string_test.go │ ├── template │ └── format.go │ ├── timer │ ├── hour.go │ ├── hour_test.go │ ├── month.go │ ├── month_test.go │ ├── time_engine.go │ ├── validate.go │ ├── week.go │ └── week_test.go │ ├── timex │ └── time.go │ └── validate │ ├── nil.go │ ├── nil_test.go │ ├── string.go │ └── string_test.go ├── pr.sh ├── proto ├── api │ ├── common │ │ ├── alert.proto │ │ ├── datasource.proto │ │ ├── health.proto │ │ ├── metric.proto │ │ ├── notice.proto │ │ └── server.proto │ ├── houyi │ │ ├── common │ │ │ ├── datasource.proto │ │ │ └── strategy.proto │ │ └── v1 │ │ │ ├── alert.proto │ │ │ ├── query.proto │ │ │ └── sync.proto │ ├── laurel │ │ ├── common │ │ │ └── metric.proto │ │ └── v1 │ │ │ └── metric.proto │ ├── merr │ │ └── err.proto │ ├── palace │ │ ├── alert.proto │ │ ├── auth.proto │ │ ├── callback.proto │ │ ├── common │ │ │ ├── common.proto │ │ │ ├── common_enum.proto │ │ │ ├── system.proto │ │ │ ├── system_enum.proto │ │ │ ├── team.proto │ │ │ ├── team_datasource.proto │ │ │ ├── team_dict.proto │ │ │ ├── team_enum.proto │ │ │ ├── team_notice.proto │ │ │ ├── team_strategy.proto │ │ │ └── team_strategy_metric.proto │ │ ├── invite.proto │ │ ├── menu.proto │ │ ├── message.proto │ │ ├── portal │ │ │ ├── auth.proto │ │ │ ├── home.proto │ │ │ └── pricing.proto │ │ ├── system.proto │ │ ├── team.proto │ │ ├── team_dashboard.proto │ │ ├── team_datasource.proto │ │ ├── team_dict.proto │ │ ├── team_log.proto │ │ ├── team_notice.proto │ │ ├── team_strategy.proto │ │ ├── team_strategy_metric.proto │ │ ├── time_engine.proto │ │ └── user.proto │ └── rabbit │ │ ├── common │ │ ├── common.proto │ │ ├── email.proto │ │ ├── hook.proto │ │ ├── notice_group.proto │ │ └── sms.proto │ │ └── v1 │ │ ├── alert.proto │ │ ├── send.proto │ │ └── sync.proto ├── config │ └── config.proto └── third_party │ ├── buf │ └── validate │ │ ├── expression.proto │ │ ├── priv │ │ └── private.proto │ │ └── validate.proto │ ├── errors │ └── errors.proto │ ├── google │ ├── api │ │ ├── annotations.proto │ │ ├── client.proto │ │ ├── field_behavior.proto │ │ ├── http.proto │ │ └── httpbody.proto │ └── protobuf │ │ ├── any.proto │ │ ├── api.proto │ │ ├── compiler │ │ └── plugin.proto │ │ ├── descriptor.proto │ │ ├── duration.proto │ │ ├── empty.proto │ │ ├── field_mask.proto │ │ ├── source_context.proto │ │ ├── struct.proto │ │ ├── timestamp.proto │ │ ├── type.proto │ │ └── wrappers.proto │ └── openapi │ └── v3 │ ├── annotations.proto │ └── openapi.proto └── scripts ├── 10s_python3_hello3.py ├── 10s_python_hello2.py ├── 5s_bash_hello_bash.sh ├── 5s_sh_hello_sh.sh ├── README.md ├── README.zh-CN.md ├── SCRIPT_CONVENTION_SUMMARY.md ├── py └── 20s_python3.py ├── templates └── README.md └── validate_naming.py /.env.houyi.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.env.houyi.example -------------------------------------------------------------------------------- /.env.laurel.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.env.laurel.example -------------------------------------------------------------------------------- /.env.palace.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.env.palace.example -------------------------------------------------------------------------------- /.env.rabbit.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.env.rabbit.example -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/image-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.github/workflows/image-builder.yml -------------------------------------------------------------------------------- /.github/workflows/image-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.github/workflows/image-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/image-server-palace.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.github/workflows/image-server-palace.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/PROJECT_GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/README.md -------------------------------------------------------------------------------- /cmd/houyi/config/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/auth.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/cache.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/config.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/evaluate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/evaluate.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/event_bus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/event_bus.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/i18n.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/log.yaml -------------------------------------------------------------------------------- /cmd/houyi/config/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/config/server.yaml -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/alert.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/bo/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/bo/alert.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/bo/datasource_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/bo/datasource_metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/bo/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/bo/strategy.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/bo/strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/bo/strategy_metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/bo/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/bo/team.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/config.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/do/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/do/alert.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/do/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/do/auth.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/do/datasource_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/do/datasource_metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/do/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/do/metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/do/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/do/notice.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/do/strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/do/strategy_metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/event/alert_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/event/alert_job.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/event/strategy_metric_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/event/strategy_metric_job.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/event_bus.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/health.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/provider_set.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/register.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/alert.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/cache.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/config.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/event_bus.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/health.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/judge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/judge.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/repository/palace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/repository/palace.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/strategy.go: -------------------------------------------------------------------------------- 1 | package biz 2 | 3 | type Strategy struct { 4 | } 5 | -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/vobj/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/vobj/cache.go -------------------------------------------------------------------------------- /cmd/houyi/internal/biz/vobj/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/biz/vobj/key.go -------------------------------------------------------------------------------- /cmd/houyi/internal/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/conf/conf.go -------------------------------------------------------------------------------- /cmd/houyi/internal/conf/conf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/conf/conf.proto -------------------------------------------------------------------------------- /cmd/houyi/internal/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/data.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/alert.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/cache.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/config.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/event_bus.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/judge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/judge.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/judge/condition/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/judge/condition/metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/judge/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/judge/metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/ping.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/impl/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/impl/provider_set.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/rpc/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/rpc/callback.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/rpc/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/rpc/provider_set.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/rpc/server_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/rpc/server_register.go -------------------------------------------------------------------------------- /cmd/houyi/internal/data/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/data/server.go -------------------------------------------------------------------------------- /cmd/houyi/internal/helper/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/helper/middleware/jwt.go -------------------------------------------------------------------------------- /cmd/houyi/internal/helper/middleware/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/helper/middleware/jwt_test.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/cron_alert_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/cron_alert_job.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/cron_strategy_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/cron_strategy_job.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/event_bus.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/grpc.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/http.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/load_ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/load_ticker.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/server.go -------------------------------------------------------------------------------- /cmd/houyi/internal/server/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/swagger/index.html -------------------------------------------------------------------------------- /cmd/houyi/internal/server/swagger/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/swagger/logo.svg -------------------------------------------------------------------------------- /cmd/houyi/internal/server/swagger/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/swagger/openapi.yaml -------------------------------------------------------------------------------- /cmd/houyi/internal/server/swagger/rapidoc-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/swagger/rapidoc-min.js -------------------------------------------------------------------------------- /cmd/houyi/internal/server/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/server/ticker.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/alert.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/build/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/build/auth.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/build/datasource_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/build/datasource_metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/build/label_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/build/label_notice.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/build/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/build/query.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/build/strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/build/strategy_metric.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/event_bus.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/health.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/load.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/provider_set.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/query.go -------------------------------------------------------------------------------- /cmd/houyi/internal/service/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/internal/service/sync.go -------------------------------------------------------------------------------- /cmd/houyi/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/main.go -------------------------------------------------------------------------------- /cmd/houyi/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/houyi/wire.go -------------------------------------------------------------------------------- /cmd/laurel/config/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/config/auth.yaml -------------------------------------------------------------------------------- /cmd/laurel/config/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/config/i18n.yaml -------------------------------------------------------------------------------- /cmd/laurel/config/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/config/log.yaml -------------------------------------------------------------------------------- /cmd/laurel/config/metric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/config/metric.yaml -------------------------------------------------------------------------------- /cmd/laurel/config/scrape.yaml: -------------------------------------------------------------------------------- 1 | scrapeConfigs: ${X_MOON_LAUREL_SCRAPE_CONFIGS:[]} 2 | -------------------------------------------------------------------------------- /cmd/laurel/config/scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/config/scripts.yaml -------------------------------------------------------------------------------- /cmd/laurel/config/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/config/server.yaml -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/bo/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/bo/metric.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/bo/scrape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/bo/scrape.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/bo/scrape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/bo/scrape_test.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/bo/scripts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/bo/scripts.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/health.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/job/load_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/job/load_file.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/job/scrape_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/job/scrape_job.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/job/script_job.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/job/script_job.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/metric.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/provider_set.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/register.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/cache.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/event_bus.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/health.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/metrics.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/register.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/script.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/repository/server_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/repository/server_register.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/script.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/vobj/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/vobj/cache.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/vobj/file_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/vobj/file_type.go -------------------------------------------------------------------------------- /cmd/laurel/internal/biz/vobj/metric_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/biz/vobj/metric_type.go -------------------------------------------------------------------------------- /cmd/laurel/internal/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/conf/conf.go -------------------------------------------------------------------------------- /cmd/laurel/internal/conf/conf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/conf/conf.proto -------------------------------------------------------------------------------- /cmd/laurel/internal/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/data.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/export/metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/export/metrics.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/export/metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/export/metrics_test.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/impl/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/impl/cache.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/impl/event_bus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/impl/event_bus.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/impl/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/impl/ping.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/impl/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/impl/provider_set.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/impl/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/impl/register.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/impl/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/impl/script.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/rpc/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/rpc/provider_set.go -------------------------------------------------------------------------------- /cmd/laurel/internal/data/rpc/server_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/data/rpc/server_register.go -------------------------------------------------------------------------------- /cmd/laurel/internal/helper/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/helper/middleware/jwt.go -------------------------------------------------------------------------------- /cmd/laurel/internal/helper/middleware/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/helper/middleware/jwt_test.go -------------------------------------------------------------------------------- /cmd/laurel/internal/server/cron_script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/cron_script.go -------------------------------------------------------------------------------- /cmd/laurel/internal/server/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/grpc.go -------------------------------------------------------------------------------- /cmd/laurel/internal/server/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/http.go -------------------------------------------------------------------------------- /cmd/laurel/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/server.go -------------------------------------------------------------------------------- /cmd/laurel/internal/server/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/swagger/index.html -------------------------------------------------------------------------------- /cmd/laurel/internal/server/swagger/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/swagger/logo.svg -------------------------------------------------------------------------------- /cmd/laurel/internal/server/swagger/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/swagger/openapi.yaml -------------------------------------------------------------------------------- /cmd/laurel/internal/server/swagger/rapidoc-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/swagger/rapidoc-min.js -------------------------------------------------------------------------------- /cmd/laurel/internal/server/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/server/ticker.go -------------------------------------------------------------------------------- /cmd/laurel/internal/service/build/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/service/build/metric.go -------------------------------------------------------------------------------- /cmd/laurel/internal/service/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/service/health.go -------------------------------------------------------------------------------- /cmd/laurel/internal/service/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/service/metric.go -------------------------------------------------------------------------------- /cmd/laurel/internal/service/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/service/provider_set.go -------------------------------------------------------------------------------- /cmd/laurel/internal/service/script.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/internal/service/script.go -------------------------------------------------------------------------------- /cmd/laurel/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/main.go -------------------------------------------------------------------------------- /cmd/laurel/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/laurel/wire.go -------------------------------------------------------------------------------- /cmd/palace/config/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/auth.yaml -------------------------------------------------------------------------------- /cmd/palace/config/crypto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/crypto.yaml -------------------------------------------------------------------------------- /cmd/palace/config/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/data.yaml -------------------------------------------------------------------------------- /cmd/palace/config/email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/email.yaml -------------------------------------------------------------------------------- /cmd/palace/config/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/i18n.yaml -------------------------------------------------------------------------------- /cmd/palace/config/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/log.yaml -------------------------------------------------------------------------------- /cmd/palace/config/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/config/server.yaml -------------------------------------------------------------------------------- /cmd/palace/internal/biz/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/auth.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/alert.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/auth.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/dashboard_chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/dashboard_chart.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/email.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/message.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/oauth.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/page.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/permission.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/select.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/sync.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_hook.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_strategy_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_strategy_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_strategy_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/team_strategy_metric_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/team_strategy_metric_level.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/bo/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/bo/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/auth.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/base.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/event/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/event/a.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/event/realtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/event/realtime.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/event/realtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/event/realtime_test.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/event/send_message_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/event/send_message_log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/realtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/realtime.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/a.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/send_message_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/send_message_log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/team_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/team_audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/team_invite_link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/team_invite_link.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/team_invite_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/team_invite_user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/team_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/team_member.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/team_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/team_role.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/user_config_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/user_config_table.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/user_config_theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/user_config_theme.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/user_oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/user_oauth.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/system/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/system/user_test.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/a.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/cofnig_sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/cofnig_sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/config_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/config_email.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/dashboard_chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/dashboard_chart.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/datasource_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/datasource_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/datasource_metric_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/datasource_metric_metadata.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/notice_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/notice_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/notice_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/notice_hook.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/notice_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/notice_member.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/strategy_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/strategy_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/strategy_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/strategy_metric_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/strategy_metric_rule.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/strategy_metric_rule_label_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/strategy_metric_rule_label_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/strategy_subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/strategy_subscriber.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team/time_engine_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team/time_engine_rule.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_config_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_config_email.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_config_sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_config_sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_member.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_role.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_strategy_subscribers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_strategy_subscribers.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/team_time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/team_time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/user_config_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/user_config_table.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/do/user_config_theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/do/user_config_theme.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/eventbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/eventbus.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/job/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/job/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/job/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/job/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/job/team_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/job/team_member.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/job/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/job/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/logs.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/message.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/permission.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/provider_set.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/cache.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/captcha.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/eventbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/eventbus.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/houyi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/houyi.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/invite.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/member.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/message.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/oauth.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/rabbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/rabbit.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/realtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/realtime.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_config_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_config_email.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_config_sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_config_sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_hook.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/team_strategy_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/team_strategy_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/transaction.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/repository/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/repository/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/system.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_datasource_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_datasource_query.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_hook.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_realtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_realtime.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_strategy_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_strategy_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/team_strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/team_strategy_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/action_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/action_audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/condition_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/condition_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/datasource_driver_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/datasource_driver_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/gender.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/gender.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/hook_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/hook_app.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/http_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/http_method.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/oauth_app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/oauth_app.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/oauth_from.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/oauth_from.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/position.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/position.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/sample_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/sample_mode.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_alert.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_global.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_member.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_send_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_send_message.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_team.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/status_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/status_user.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/team_capacity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/team_capacity.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/theme_layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/theme_layout.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/theme_mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/theme_mode.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_changed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_changed.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_menu_category.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_menu_category.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_menu_process.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_menu_process.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_message.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_provider_sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_provider_sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_server.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_time_engine_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_time_engine_rule.go -------------------------------------------------------------------------------- /cmd/palace/internal/biz/vobj/type_user_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/biz/vobj/type_user_config.go -------------------------------------------------------------------------------- /cmd/palace/internal/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/conf/conf.go -------------------------------------------------------------------------------- /cmd/palace/internal/conf/conf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/conf/conf.proto -------------------------------------------------------------------------------- /cmd/palace/internal/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/.gitignore -------------------------------------------------------------------------------- /cmd/palace/internal/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/data.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/base.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/member.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/menus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/menus.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/build/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/build/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/cache.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/captcha.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/error.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/eventbus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/eventbus.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/invite.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/message.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/oauth.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/provider_set.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/realtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/realtime.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/send_message_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/send_message_log.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_config_email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_config_email.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_config_sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_config_sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_dashboard_chart.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_dashboard_chart.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_datasource_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_datasource_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_datasource_metric_metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_datasource_metric_metadata.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_hook.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_member.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_member.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_role.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_strategy_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_strategy_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_strategy_metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_strategy_metric.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/team_strategy_metric_level.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/team_strategy_metric_level.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/template/password_changed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/template/password_changed.html -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/template/team_invite_user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/template/team_invite_user.html -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/template/verify_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/template/verify_email.html -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/template/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/template/welcome.html -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/time_engine_rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/time_engine_rule.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/transaction.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/impl/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/impl/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/rpc/houyi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/rpc/houyi.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/rpc/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/rpc/provider_set.go -------------------------------------------------------------------------------- /cmd/palace/internal/data/rpc/rabbit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/data/rpc/rabbit.go -------------------------------------------------------------------------------- /cmd/palace/internal/helper/middleware/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/helper/middleware/header.go -------------------------------------------------------------------------------- /cmd/palace/internal/helper/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/helper/middleware/jwt.go -------------------------------------------------------------------------------- /cmd/palace/internal/helper/middleware/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/helper/middleware/jwt_test.go -------------------------------------------------------------------------------- /cmd/palace/internal/helper/middleware/operate_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/helper/middleware/operate_log.go -------------------------------------------------------------------------------- /cmd/palace/internal/helper/middleware/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/helper/middleware/permission.go -------------------------------------------------------------------------------- /cmd/palace/internal/server/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/event.go -------------------------------------------------------------------------------- /cmd/palace/internal/server/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/grpc.go -------------------------------------------------------------------------------- /cmd/palace/internal/server/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/http.go -------------------------------------------------------------------------------- /cmd/palace/internal/server/http_portal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/http_portal.go -------------------------------------------------------------------------------- /cmd/palace/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/server/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/swagger/index.html -------------------------------------------------------------------------------- /cmd/palace/internal/server/swagger/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/swagger/logo.svg -------------------------------------------------------------------------------- /cmd/palace/internal/server/swagger/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/swagger/openapi.yaml -------------------------------------------------------------------------------- /cmd/palace/internal/server/swagger/rapidoc-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/swagger/rapidoc-min.js -------------------------------------------------------------------------------- /cmd/palace/internal/server/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/server/ticker.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/alert.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/auth.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/alert.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/audit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/audit.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/auth.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/common.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/dashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/datasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/datasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/dict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/dict.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/email.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/health.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/hook.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/log.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/message.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/notice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/notice.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/role.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/role.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/select.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/sms.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/status.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/strategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/strategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/strategy_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/strategy_group.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/time_engine.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/build/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/build/user.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/callback.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/callback.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/health.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/load.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/menu.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/portal/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/portal/auth.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/portal/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/portal/home.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/portal/pricing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/portal/pricing.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/portal/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/portal/provider_set.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/provider_set.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/server.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/system.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/system.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/team.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamdashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamdashboard.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamdatasource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamdatasource.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamdict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamdict.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamlog.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamnotice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamnotice.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamstrategy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamstrategy.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/teamstrategymetric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/teamstrategymetric.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/timeengine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/timeengine.go -------------------------------------------------------------------------------- /cmd/palace/internal/service/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/internal/service/user.go -------------------------------------------------------------------------------- /cmd/palace/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/main.go -------------------------------------------------------------------------------- /cmd/palace/migrate/auto_migrate/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/migrate/auto_migrate/migrate.go -------------------------------------------------------------------------------- /cmd/palace/migrate/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/migrate/gen/gen.go -------------------------------------------------------------------------------- /cmd/palace/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/palace/wire.go -------------------------------------------------------------------------------- /cmd/rabbit/config/auth.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/auth.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/data.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/email.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/email.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/hook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/hook.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/i18n.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/i18n.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/log.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/log.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/notice_group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/notice_group.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/server.yaml -------------------------------------------------------------------------------- /cmd/rabbit/config/sms.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/config/sms.yaml -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/alert.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/alerts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/alerts.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/email.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/hook.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/notice_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/notice_group.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/sms.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/bo/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/bo/user.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/do/email_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/do/email_config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/do/hook_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/do/hook_config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/do/notice_group_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/do/notice_group_config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/do/notice_user_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/do/notice_user_config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/do/sms_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/do/sms_config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/email.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/health.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/hook.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/lock.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/provider_set.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/register.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/repository/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/repository/cache.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/repository/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/repository/config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/repository/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/repository/health.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/repository/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/repository/send.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/repository/server_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/repository/server_register.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/sms.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/vobj/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/vobj/app.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/vobj/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/vobj/cache.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/biz/vobj/sms_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/biz/vobj/sms_type.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/conf/conf.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/conf/conf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/conf/conf.proto -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/data.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/impl/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/impl/cache.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/impl/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/impl/config.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/impl/ping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/impl/ping.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/impl/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/impl/provider_set.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/impl/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/impl/send.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/rpc/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/rpc/provider_set.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/data/rpc/server_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/data/rpc/server_register.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/helper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/helper/README.md -------------------------------------------------------------------------------- /cmd/rabbit/internal/helper/middleware/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/helper/middleware/jwt.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/helper/middleware/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/helper/middleware/jwt_test.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/grpc.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/http.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/server.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/swagger/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/swagger/index.html -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/swagger/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/swagger/logo.svg -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/swagger/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/swagger/openapi.yaml -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/swagger/rapidoc-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/swagger/rapidoc-min.js -------------------------------------------------------------------------------- /cmd/rabbit/internal/server/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/server/ticker.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/alert.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/build/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/build/alert.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/build/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/build/app.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/build/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/build/sync.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/health.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/health.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/provider_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/provider_set.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/send.go -------------------------------------------------------------------------------- /cmd/rabbit/internal/service/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/internal/service/sync.go -------------------------------------------------------------------------------- /cmd/rabbit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/main.go -------------------------------------------------------------------------------- /cmd/rabbit/wire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/cmd/rabbit/wire.go -------------------------------------------------------------------------------- /deploy/base/DockerfileBuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/base/DockerfileBuilder -------------------------------------------------------------------------------- /deploy/base/DockerfileDeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/base/DockerfileDeploy -------------------------------------------------------------------------------- /deploy/etcd/.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /deploy/etcd/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/etcd/docker-compose.yml -------------------------------------------------------------------------------- /deploy/mysql/.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /deploy/mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/mysql/docker-compose.yml -------------------------------------------------------------------------------- /deploy/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/mysql/my.cnf -------------------------------------------------------------------------------- /deploy/prometheus/.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /deploy/prometheus/config/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/prometheus/config/prometheus.yml -------------------------------------------------------------------------------- /deploy/prometheus/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/prometheus/docker-compose.yml -------------------------------------------------------------------------------- /deploy/prometheus/k8s/node-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/prometheus/k8s/node-exporter.yaml -------------------------------------------------------------------------------- /deploy/prometheus/k8s/prometheus-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/prometheus/k8s/prometheus-config.yaml -------------------------------------------------------------------------------- /deploy/redis/.gitignore: -------------------------------------------------------------------------------- 1 | data -------------------------------------------------------------------------------- /deploy/redis/conf/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/redis/conf/redis.conf -------------------------------------------------------------------------------- /deploy/redis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/redis/docker-compose.yml -------------------------------------------------------------------------------- /deploy/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/server/Dockerfile -------------------------------------------------------------------------------- /deploy/victoriametric/.gitignore: -------------------------------------------------------------------------------- 1 | victoria-metrics-data -------------------------------------------------------------------------------- /deploy/victoriametric/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/deploy/victoriametric/docker-compose.yml -------------------------------------------------------------------------------- /docs/.ai/SOP.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/.ai/SOP.zh-CN.md -------------------------------------------------------------------------------- /docs/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/README.zh-CN.md -------------------------------------------------------------------------------- /docs/dev/COMMIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/dev/COMMIT.md -------------------------------------------------------------------------------- /docs/dev/COMMIT.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/dev/COMMIT.zh-CN.md -------------------------------------------------------------------------------- /docs/dev/DEV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/dev/DEV.md -------------------------------------------------------------------------------- /docs/dev/DEV.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/dev/DEV.zh-CN.md -------------------------------------------------------------------------------- /docs/dev/GOPHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/dev/GOPHER.md -------------------------------------------------------------------------------- /docs/dev/GOPHER.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/dev/GOPHER.zh-CN.md -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/ui/README.md -------------------------------------------------------------------------------- /docs/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/docs/ui/index.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/go.sum -------------------------------------------------------------------------------- /i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/i18n/en.toml -------------------------------------------------------------------------------- /i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/i18n/ja.toml -------------------------------------------------------------------------------- /i18n/zh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/i18n/zh.toml -------------------------------------------------------------------------------- /pkg/hello/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/hello/env.go -------------------------------------------------------------------------------- /pkg/hello/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/hello/hello.go -------------------------------------------------------------------------------- /pkg/hello/hello_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/hello/hello_test.go -------------------------------------------------------------------------------- /pkg/i18n/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/i18n/config.go -------------------------------------------------------------------------------- /pkg/i18n/i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/i18n/i18n.go -------------------------------------------------------------------------------- /pkg/i18n/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/i18n/message.go -------------------------------------------------------------------------------- /pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/log/log.go -------------------------------------------------------------------------------- /pkg/log/sugared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/log/sugared.go -------------------------------------------------------------------------------- /pkg/metric/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/metric/handle.go -------------------------------------------------------------------------------- /pkg/metric/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/metric/metric.go -------------------------------------------------------------------------------- /pkg/metric/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/metric/option.go -------------------------------------------------------------------------------- /pkg/metric/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/metric/route.go -------------------------------------------------------------------------------- /pkg/metric/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/metric/server.go -------------------------------------------------------------------------------- /pkg/middler/allow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/middler/allow.go -------------------------------------------------------------------------------- /pkg/middler/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/middler/cors.go -------------------------------------------------------------------------------- /pkg/middler/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/middler/limit.go -------------------------------------------------------------------------------- /pkg/middler/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/middler/metadata.go -------------------------------------------------------------------------------- /pkg/middler/permission/permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/middler/permission/permission.go -------------------------------------------------------------------------------- /pkg/middler/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/middler/validate.go -------------------------------------------------------------------------------- /pkg/plugin/cache/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/cache/cache.go -------------------------------------------------------------------------------- /pkg/plugin/cache/cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/cache/cache_test.go -------------------------------------------------------------------------------- /pkg/plugin/cache/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/cache/key.go -------------------------------------------------------------------------------- /pkg/plugin/cache/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/cache/redis.go -------------------------------------------------------------------------------- /pkg/plugin/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/command/command.go -------------------------------------------------------------------------------- /pkg/plugin/command/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/command/command_test.go -------------------------------------------------------------------------------- /pkg/plugin/command/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/command/file.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/auth.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/datasource.go: -------------------------------------------------------------------------------- 1 | package datasource 2 | -------------------------------------------------------------------------------- /pkg/plugin/datasource/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/metric.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/prometheus/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/prometheus/params.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/prometheus/prometheus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/prometheus/prometheus.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/prometheus/prometheus_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/prometheus/prometheus_test.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/victoria/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/victoria/params.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/victoria/victoria_metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/victoria/victoria_metrics.go -------------------------------------------------------------------------------- /pkg/plugin/datasource/victoria/victoria_metrics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/datasource/victoria/victoria_metrics_test.go -------------------------------------------------------------------------------- /pkg/plugin/email/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/email/config.go -------------------------------------------------------------------------------- /pkg/plugin/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/email/email.go -------------------------------------------------------------------------------- /pkg/plugin/email/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/email/mock.go -------------------------------------------------------------------------------- /pkg/plugin/gorm/gorm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/gorm/gorm.go -------------------------------------------------------------------------------- /pkg/plugin/gorm/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/gorm/log.go -------------------------------------------------------------------------------- /pkg/plugin/hook/dingtalk/dingtalk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/hook/dingtalk/dingtalk.go -------------------------------------------------------------------------------- /pkg/plugin/hook/feishu/feishu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/hook/feishu/feishu.go -------------------------------------------------------------------------------- /pkg/plugin/hook/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/hook/hook.go -------------------------------------------------------------------------------- /pkg/plugin/hook/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/hook/message.go -------------------------------------------------------------------------------- /pkg/plugin/hook/other/other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/hook/other/other.go -------------------------------------------------------------------------------- /pkg/plugin/hook/wechat/wechat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/hook/wechat/wechat.go -------------------------------------------------------------------------------- /pkg/plugin/registry/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/registry/discovery.go -------------------------------------------------------------------------------- /pkg/plugin/registry/registrar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/registry/registrar.go -------------------------------------------------------------------------------- /pkg/plugin/server/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/client.go -------------------------------------------------------------------------------- /pkg/plugin/server/cron_server/cron.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/cron_server/cron.go -------------------------------------------------------------------------------- /pkg/plugin/server/cron_server/cron_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/cron_server/cron_test.go -------------------------------------------------------------------------------- /pkg/plugin/server/cron_server/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/cron_server/doc.go -------------------------------------------------------------------------------- /pkg/plugin/server/mcp_server/README.md: -------------------------------------------------------------------------------- 1 | # MCP Server -------------------------------------------------------------------------------- /pkg/plugin/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/server.go -------------------------------------------------------------------------------- /pkg/plugin/server/ticker_server/REDEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/ticker_server/REDEME.md -------------------------------------------------------------------------------- /pkg/plugin/server/ticker_server/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/ticker_server/doc.go -------------------------------------------------------------------------------- /pkg/plugin/server/ticker_server/ticker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/ticker_server/ticker.go -------------------------------------------------------------------------------- /pkg/plugin/server/ticker_server/ticker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/server/ticker_server/ticker_test.go -------------------------------------------------------------------------------- /pkg/plugin/sms/alicloud/aliyun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/sms/alicloud/aliyun.go -------------------------------------------------------------------------------- /pkg/plugin/sms/alicloud/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/sms/alicloud/env.go -------------------------------------------------------------------------------- /pkg/plugin/sms/alicloud/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/sms/alicloud/option.go -------------------------------------------------------------------------------- /pkg/plugin/sms/sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/sms/sms.go -------------------------------------------------------------------------------- /pkg/plugin/storage/alicloud/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/alicloud/.env.example -------------------------------------------------------------------------------- /pkg/plugin/storage/alicloud/.gitignore: -------------------------------------------------------------------------------- 1 | test.txt -------------------------------------------------------------------------------- /pkg/plugin/storage/alicloud/oss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/alicloud/oss.go -------------------------------------------------------------------------------- /pkg/plugin/storage/alicloud/oss_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/alicloud/oss_test.go -------------------------------------------------------------------------------- /pkg/plugin/storage/local/.gitignore: -------------------------------------------------------------------------------- 1 | test.txt 2 | moon -------------------------------------------------------------------------------- /pkg/plugin/storage/local/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/local/api.go -------------------------------------------------------------------------------- /pkg/plugin/storage/local/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/local/local.go -------------------------------------------------------------------------------- /pkg/plugin/storage/local/local_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/local/local_test.go -------------------------------------------------------------------------------- /pkg/plugin/storage/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/plugin/storage/storage.go -------------------------------------------------------------------------------- /pkg/util/captcha/captcha.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/captcha/captcha.go -------------------------------------------------------------------------------- /pkg/util/captcha/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/captcha/store.go -------------------------------------------------------------------------------- /pkg/util/cnst/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/cnst/header.go -------------------------------------------------------------------------------- /pkg/util/cnst/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/cnst/label.go -------------------------------------------------------------------------------- /pkg/util/cnst/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/cnst/metadata.go -------------------------------------------------------------------------------- /pkg/util/condense/gzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/condense/gzip.go -------------------------------------------------------------------------------- /pkg/util/condense/gzip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/condense/gzip_test.go -------------------------------------------------------------------------------- /pkg/util/conn/consul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/conn/consul.go -------------------------------------------------------------------------------- /pkg/util/conn/etcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/conn/etcd.go -------------------------------------------------------------------------------- /pkg/util/crypto/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/aes.go -------------------------------------------------------------------------------- /pkg/util/crypto/aes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/aes_test.go -------------------------------------------------------------------------------- /pkg/util/crypto/object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/object.go -------------------------------------------------------------------------------- /pkg/util/crypto/object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/object_test.go -------------------------------------------------------------------------------- /pkg/util/crypto/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/options.go -------------------------------------------------------------------------------- /pkg/util/crypto/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/string.go -------------------------------------------------------------------------------- /pkg/util/crypto/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/crypto/string_test.go -------------------------------------------------------------------------------- /pkg/util/docs/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/docs/docs.go -------------------------------------------------------------------------------- /pkg/util/hash/md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/hash/md5.go -------------------------------------------------------------------------------- /pkg/util/hash/md5_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/hash/md5_test.go -------------------------------------------------------------------------------- /pkg/util/httpx/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/httpx/client.go -------------------------------------------------------------------------------- /pkg/util/httpx/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/httpx/params.go -------------------------------------------------------------------------------- /pkg/util/httpx/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/httpx/post.go -------------------------------------------------------------------------------- /pkg/util/ips/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/ips/ip.go -------------------------------------------------------------------------------- /pkg/util/ips/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/ips/ip_test.go -------------------------------------------------------------------------------- /pkg/util/kv/label/annotation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/label/annotation.go -------------------------------------------------------------------------------- /pkg/util/kv/label/annotation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/label/annotation_test.go -------------------------------------------------------------------------------- /pkg/util/kv/label/label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/label/label.go -------------------------------------------------------------------------------- /pkg/util/kv/label/label_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/label/label_test.go -------------------------------------------------------------------------------- /pkg/util/kv/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/map.go -------------------------------------------------------------------------------- /pkg/util/kv/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/map_test.go -------------------------------------------------------------------------------- /pkg/util/kv/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/kv/string.go -------------------------------------------------------------------------------- /pkg/util/load/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/load/config.go -------------------------------------------------------------------------------- /pkg/util/load/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/load/load.go -------------------------------------------------------------------------------- /pkg/util/password/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/password/new.go -------------------------------------------------------------------------------- /pkg/util/password/new_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/password/new_test.go -------------------------------------------------------------------------------- /pkg/util/password/password.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/password/password.go -------------------------------------------------------------------------------- /pkg/util/password/password_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/password/password_test.go -------------------------------------------------------------------------------- /pkg/util/password/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/password/random.go -------------------------------------------------------------------------------- /pkg/util/password/random_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/password/random_test.go -------------------------------------------------------------------------------- /pkg/util/pointer/pointer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/pointer/pointer.go -------------------------------------------------------------------------------- /pkg/util/pointer/pointer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/pointer/pointer_test.go -------------------------------------------------------------------------------- /pkg/util/queue/ringbuffer/ringbuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/queue/ringbuffer/ringbuffer.go -------------------------------------------------------------------------------- /pkg/util/queue/ringbuffer/ringbuffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/queue/ringbuffer/ringbuffer_test.go -------------------------------------------------------------------------------- /pkg/util/safety/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/ctx.go -------------------------------------------------------------------------------- /pkg/util/safety/ctx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/ctx_test.go -------------------------------------------------------------------------------- /pkg/util/safety/go.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/go.go -------------------------------------------------------------------------------- /pkg/util/safety/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/map.go -------------------------------------------------------------------------------- /pkg/util/safety/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/map_test.go -------------------------------------------------------------------------------- /pkg/util/safety/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/slice.go -------------------------------------------------------------------------------- /pkg/util/safety/slice_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/safety/slice_test.go -------------------------------------------------------------------------------- /pkg/util/slices/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/slices/slice.go -------------------------------------------------------------------------------- /pkg/util/strutil/mask.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/strutil/mask.go -------------------------------------------------------------------------------- /pkg/util/strutil/mask_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/strutil/mask_test.go -------------------------------------------------------------------------------- /pkg/util/strutil/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/strutil/string.go -------------------------------------------------------------------------------- /pkg/util/strutil/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/strutil/string_test.go -------------------------------------------------------------------------------- /pkg/util/template/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/template/format.go -------------------------------------------------------------------------------- /pkg/util/timer/hour.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/hour.go -------------------------------------------------------------------------------- /pkg/util/timer/hour_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/hour_test.go -------------------------------------------------------------------------------- /pkg/util/timer/month.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/month.go -------------------------------------------------------------------------------- /pkg/util/timer/month_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/month_test.go -------------------------------------------------------------------------------- /pkg/util/timer/time_engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/time_engine.go -------------------------------------------------------------------------------- /pkg/util/timer/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/validate.go -------------------------------------------------------------------------------- /pkg/util/timer/week.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/week.go -------------------------------------------------------------------------------- /pkg/util/timer/week_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timer/week_test.go -------------------------------------------------------------------------------- /pkg/util/timex/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/timex/time.go -------------------------------------------------------------------------------- /pkg/util/validate/nil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/validate/nil.go -------------------------------------------------------------------------------- /pkg/util/validate/nil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/validate/nil_test.go -------------------------------------------------------------------------------- /pkg/util/validate/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/validate/string.go -------------------------------------------------------------------------------- /pkg/util/validate/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pkg/util/validate/string_test.go -------------------------------------------------------------------------------- /pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/pr.sh -------------------------------------------------------------------------------- /proto/api/common/alert.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/common/alert.proto -------------------------------------------------------------------------------- /proto/api/common/datasource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/common/datasource.proto -------------------------------------------------------------------------------- /proto/api/common/health.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/common/health.proto -------------------------------------------------------------------------------- /proto/api/common/metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/common/metric.proto -------------------------------------------------------------------------------- /proto/api/common/notice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/common/notice.proto -------------------------------------------------------------------------------- /proto/api/common/server.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/common/server.proto -------------------------------------------------------------------------------- /proto/api/houyi/common/datasource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/houyi/common/datasource.proto -------------------------------------------------------------------------------- /proto/api/houyi/common/strategy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/houyi/common/strategy.proto -------------------------------------------------------------------------------- /proto/api/houyi/v1/alert.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/houyi/v1/alert.proto -------------------------------------------------------------------------------- /proto/api/houyi/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/houyi/v1/query.proto -------------------------------------------------------------------------------- /proto/api/houyi/v1/sync.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/houyi/v1/sync.proto -------------------------------------------------------------------------------- /proto/api/laurel/common/metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/laurel/common/metric.proto -------------------------------------------------------------------------------- /proto/api/laurel/v1/metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/laurel/v1/metric.proto -------------------------------------------------------------------------------- /proto/api/merr/err.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/merr/err.proto -------------------------------------------------------------------------------- /proto/api/palace/alert.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/alert.proto -------------------------------------------------------------------------------- /proto/api/palace/auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/auth.proto -------------------------------------------------------------------------------- /proto/api/palace/callback.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/callback.proto -------------------------------------------------------------------------------- /proto/api/palace/common/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/common.proto -------------------------------------------------------------------------------- /proto/api/palace/common/common_enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/common_enum.proto -------------------------------------------------------------------------------- /proto/api/palace/common/system.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/system.proto -------------------------------------------------------------------------------- /proto/api/palace/common/system_enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/system_enum.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team_datasource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team_datasource.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team_dict.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team_dict.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team_enum.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team_enum.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team_notice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team_notice.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team_strategy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team_strategy.proto -------------------------------------------------------------------------------- /proto/api/palace/common/team_strategy_metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/common/team_strategy_metric.proto -------------------------------------------------------------------------------- /proto/api/palace/invite.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/invite.proto -------------------------------------------------------------------------------- /proto/api/palace/menu.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/menu.proto -------------------------------------------------------------------------------- /proto/api/palace/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/message.proto -------------------------------------------------------------------------------- /proto/api/palace/portal/auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/portal/auth.proto -------------------------------------------------------------------------------- /proto/api/palace/portal/home.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/portal/home.proto -------------------------------------------------------------------------------- /proto/api/palace/portal/pricing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/portal/pricing.proto -------------------------------------------------------------------------------- /proto/api/palace/system.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/system.proto -------------------------------------------------------------------------------- /proto/api/palace/team.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team.proto -------------------------------------------------------------------------------- /proto/api/palace/team_dashboard.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_dashboard.proto -------------------------------------------------------------------------------- /proto/api/palace/team_datasource.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_datasource.proto -------------------------------------------------------------------------------- /proto/api/palace/team_dict.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_dict.proto -------------------------------------------------------------------------------- /proto/api/palace/team_log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_log.proto -------------------------------------------------------------------------------- /proto/api/palace/team_notice.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_notice.proto -------------------------------------------------------------------------------- /proto/api/palace/team_strategy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_strategy.proto -------------------------------------------------------------------------------- /proto/api/palace/team_strategy_metric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/team_strategy_metric.proto -------------------------------------------------------------------------------- /proto/api/palace/time_engine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/time_engine.proto -------------------------------------------------------------------------------- /proto/api/palace/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/palace/user.proto -------------------------------------------------------------------------------- /proto/api/rabbit/common/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/common/common.proto -------------------------------------------------------------------------------- /proto/api/rabbit/common/email.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/common/email.proto -------------------------------------------------------------------------------- /proto/api/rabbit/common/hook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/common/hook.proto -------------------------------------------------------------------------------- /proto/api/rabbit/common/notice_group.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/common/notice_group.proto -------------------------------------------------------------------------------- /proto/api/rabbit/common/sms.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/common/sms.proto -------------------------------------------------------------------------------- /proto/api/rabbit/v1/alert.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/v1/alert.proto -------------------------------------------------------------------------------- /proto/api/rabbit/v1/send.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/v1/send.proto -------------------------------------------------------------------------------- /proto/api/rabbit/v1/sync.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/api/rabbit/v1/sync.proto -------------------------------------------------------------------------------- /proto/config/config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/config/config.proto -------------------------------------------------------------------------------- /proto/third_party/buf/validate/expression.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/buf/validate/expression.proto -------------------------------------------------------------------------------- /proto/third_party/buf/validate/priv/private.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/buf/validate/priv/private.proto -------------------------------------------------------------------------------- /proto/third_party/buf/validate/validate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/buf/validate/validate.proto -------------------------------------------------------------------------------- /proto/third_party/errors/errors.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/errors/errors.proto -------------------------------------------------------------------------------- /proto/third_party/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/api/annotations.proto -------------------------------------------------------------------------------- /proto/third_party/google/api/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/api/client.proto -------------------------------------------------------------------------------- /proto/third_party/google/api/field_behavior.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/api/field_behavior.proto -------------------------------------------------------------------------------- /proto/third_party/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/api/http.proto -------------------------------------------------------------------------------- /proto/third_party/google/api/httpbody.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/api/httpbody.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/any.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/api.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/compiler/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/compiler/plugin.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/duration.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/empty.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/source_context.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/source_context.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/struct.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/type.proto -------------------------------------------------------------------------------- /proto/third_party/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /proto/third_party/openapi/v3/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/openapi/v3/annotations.proto -------------------------------------------------------------------------------- /proto/third_party/openapi/v3/openapi.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/proto/third_party/openapi/v3/openapi.proto -------------------------------------------------------------------------------- /scripts/10s_python3_hello3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/10s_python3_hello3.py -------------------------------------------------------------------------------- /scripts/10s_python_hello2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/10s_python_hello2.py -------------------------------------------------------------------------------- /scripts/5s_bash_hello_bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/5s_bash_hello_bash.sh -------------------------------------------------------------------------------- /scripts/5s_sh_hello_sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/5s_sh_hello_sh.sh -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/README.zh-CN.md -------------------------------------------------------------------------------- /scripts/SCRIPT_CONVENTION_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/SCRIPT_CONVENTION_SUMMARY.md -------------------------------------------------------------------------------- /scripts/py/20s_python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/py/20s_python3.py -------------------------------------------------------------------------------- /scripts/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/templates/README.md -------------------------------------------------------------------------------- /scripts/validate_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aide-family/moon/HEAD/scripts/validate_naming.py --------------------------------------------------------------------------------