├── .adr-dir ├── .codeclimate.yml ├── .dockerignore ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── issue_templates │ ├── bug_report.md │ ├── epic.md │ └── feature_request.md ├── .golangci.yml ├── .ignore ├── .reuse └── dep5 ├── ARCHITECTURE.md ├── BILLOFMATERIALS.md ├── CLA ├── LICENSE ├── LICENSES ├── AGPL-3.0-only.txt ├── CC0-1.0.txt └── MIT.txt ├── Makefile ├── README.md ├── RELEASING.md ├── TRANSLATION.md ├── VERSION.txt ├── acceptance_tests ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── env │ └── default │ │ ├── default.properties │ │ ├── headless.properties │ │ └── js.properties ├── manifest.json ├── package-lock.json ├── package.json ├── specs │ ├── 1_1_registration.spec │ ├── 1_2_walkthrough.spec │ ├── 2_logout.spec │ ├── 3_login.spec │ ├── 4_datepicker.spec │ ├── 5_user_welcome.spec │ └── 6_message_detective.spec └── tests │ └── step_implementation.js ├── api ├── api.go ├── connectionstats.go ├── dashboard.go ├── dashboard_test.go ├── detective.go ├── detective_auth_test.go ├── detective_test.go ├── docs │ ├── placeholder.go │ └── tools.go ├── gen.go ├── insights.go ├── insights_import_progress.go ├── insights_import_progress_test.go ├── insights_test.go ├── rawlogs.go ├── rawlogs_test.go ├── reports.go ├── status_message.go └── tools.go ├── app_test.go ├── assets_gen └── assets_generate.go ├── auth ├── auth.go ├── auth_test.go ├── migrations │ ├── 1_auth_migration_create_auth_table.go │ └── 3_auth_migration_clear_old_keys.go └── validations.go ├── ci ├── Dockerfile ├── README.md ├── publish_docker_image.sh └── release_on_gitlab.sh ├── clean_files_go_js_vue.py ├── cli_usage.md ├── config ├── config.go └── config_test.go ├── connectionstats ├── access.go ├── migrations │ ├── 1_create_postfix_connection_tables.go │ └── 2_add_support_for_imap.go ├── stats.go └── stats_test.go ├── dashboard ├── dashboard.go ├── dashboard_test.go ├── mock.go ├── mock │ └── placeholder.go ├── queries_test.go └── tools.go ├── deliverydb ├── cleaning.go ├── delivery.go ├── delivery_test.go ├── migrations │ ├── 1_create_table_postfix_smtp_message_status.go │ ├── 2_delete_old_log_tables.go │ ├── 3_delivery_tables.go │ ├── 4_add_queue_info.go │ ├── 5_case_insensitive_domains_index.go │ ├── 6_index_for_delivery_message_id.go │ ├── 7_log_line_ref.go │ └── 8_msgid_replies.go ├── queue.go ├── recover_dev.go ├── recover_release.go └── update_delivery.go ├── detective ├── detective.go ├── detective_test.go ├── escalator │ ├── escalator.go │ └── escalator_test.go ├── mock.go ├── mock │ └── placeholder.go └── tools.go ├── docs ├── DEVELOPMENT_FLOW.md ├── assets │ ├── add_permission.png │ ├── add_permission.png.license │ ├── add_token_control.png │ ├── add_token_control.png.license │ ├── app_config.png │ ├── app_config.png.license │ ├── create_app.png │ ├── create_app.png.license │ ├── create_token.png │ ├── create_token.png.license │ ├── invite_bot.png │ ├── invite_bot.png.license │ ├── ngi-pointer-eu-flag-300.png │ ├── ngi-zero-eu-flag-300.png │ └── screenshot.png ├── components.dot ├── components.svg ├── decisions │ ├── 0001-record-architecture-decisions.md │ ├── 0002-branching-model.md │ ├── 0003-translations-workflow.md │ └── 0004-sqlite-as-storage.md ├── placeholder.go └── tools.go ├── domainmapping ├── gen.go ├── gen_list │ └── gen.go ├── mapping.go ├── mapping.json └── mapping_test.go ├── dovecotconf.go ├── examples ├── deliverydb │ └── main.go ├── mailtracking │ ├── main.go │ └── to_json.sh ├── postfix-dir-watcher │ └── main.go └── workspace-simple │ └── main.go ├── featureflags ├── feature_test.go └── featureflags.go ├── frontend └── controlcenter │ ├── .browserslistrc │ ├── .env.development │ ├── .env.production │ ├── .eslintignore │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.svg │ ├── img │ │ └── walkthrough │ │ │ ├── step-detective.svg │ │ │ ├── step1.svg │ │ │ ├── step2.svg │ │ │ ├── step3.svg │ │ │ ├── step4.svg │ │ │ └── step5.svg │ └── index.html │ ├── root_build.sh │ ├── src │ ├── App.vue │ ├── assets │ │ ├── css │ │ │ └── panel-page.css │ │ ├── fonts │ │ │ ├── inter │ │ │ │ ├── Inter-BlackItalic.woff │ │ │ │ ├── Inter-Bold.woff │ │ │ │ ├── Inter-BoldItalic.woff │ │ │ │ ├── Inter-Italic.woff │ │ │ │ ├── Inter-Regular.woff │ │ │ │ └── LICENSE.txt │ │ │ └── open-sans │ │ │ │ ├── Bold │ │ │ │ ├── OpenSans-Bold.woff │ │ │ │ └── OpenSans-Bold.woff2 │ │ │ │ ├── BoldItalic │ │ │ │ ├── OpenSans-BoldItalic.woff │ │ │ │ └── OpenSans-BoldItalic.woff2 │ │ │ │ ├── ExtraBold │ │ │ │ ├── OpenSans-ExtraBold.woff │ │ │ │ └── OpenSans-ExtraBold.woff2 │ │ │ │ ├── ExtraBoldItalic │ │ │ │ ├── OpenSans-ExtraBoldItalic.woff │ │ │ │ └── OpenSans-ExtraBoldItalic.woff2 │ │ │ │ ├── Italic │ │ │ │ ├── OpenSans-Italic.woff │ │ │ │ └── OpenSans-Italic.woff2 │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Light │ │ │ │ ├── OpenSans-Light.woff │ │ │ │ └── OpenSans-Light.woff2 │ │ │ │ ├── LightItalic │ │ │ │ ├── OpenSans-LightItalic.woff │ │ │ │ └── OpenSans-LightItalic.woff2 │ │ │ │ ├── Regular │ │ │ │ ├── OpenSans-Regular.woff │ │ │ │ └── OpenSans-Regular.woff2 │ │ │ │ ├── Semibold │ │ │ │ ├── OpenSans-Semibold.woff │ │ │ │ └── OpenSans-Semibold.woff2 │ │ │ │ └── SemiboldItalic │ │ │ │ ├── OpenSans-SemiboldItalic.woff │ │ │ │ └── OpenSans-SemiboldItalic.woff2 │ │ ├── greeting-lensflare.svg │ │ ├── greeting-observatory.svg │ │ ├── login-gradient-bg.svg │ │ └── logo-color-120.svg │ ├── components │ │ ├── alerts.vue │ │ ├── auth-page-footer.vue │ │ ├── dashboard │ │ │ ├── supergraph-close-button-orig.svg │ │ │ └── supergraph.vue │ │ ├── detective-results.vue │ │ ├── detective.vue │ │ ├── graph-dashboard.vue │ │ ├── import-progress-indicator.vue │ │ ├── insights.vue │ │ ├── insights │ │ │ ├── blockedips-content.vue │ │ │ ├── blockedips-summary-content.vue │ │ │ ├── log-viewer-button.vue │ │ │ └── summary │ │ │ │ ├── content.vue │ │ │ │ ├── empty.vue │ │ │ │ ├── high-bounce-rate.vue │ │ │ │ ├── local-rbl.vue │ │ │ │ ├── mail-inactivity.vue │ │ │ │ └── message-rbl.vue │ │ ├── language-switcher.vue │ │ ├── main-dashboard-simple-view.vue │ │ ├── main-dashboard.vue │ │ ├── mainfooter.vue │ │ ├── mainheader.vue │ │ ├── panelpage.vue │ │ └── walkthrough.vue │ ├── lib │ │ ├── api.js │ │ ├── date.js │ │ └── util.js │ ├── main.js │ ├── mixin │ │ ├── auth.js │ │ ├── datepicker.js │ │ ├── global_shared.js │ │ └── shared_texts.js │ ├── router │ │ └── index.js │ ├── store │ │ └── index.js │ └── views │ │ ├── admindetective.vue │ │ ├── enduserdetective.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── register.vue │ │ ├── settingspage.vue │ │ └── signals.vue │ └── vue.config.js ├── go.mod ├── go.sum ├── httpauth ├── auth │ ├── auth.go │ └── fake_registrar.go ├── handler.go └── handler_test.go ├── httpmiddleware ├── auth.go ├── auth_test.go ├── chain.go ├── rate_limit.go ├── rate_limit_test.go ├── request_with_interval.go ├── request_with_interval_test.go ├── timeout_test.go └── withtimeout.go ├── httpsettings ├── regression_test.go ├── settings.go ├── settings_page_test.go └── settings_test.go ├── i18n ├── i18n_test.go ├── translator │ ├── default.go │ └── translator_test.go └── wrapper.go ├── insights ├── actions.go ├── actions_dev.go ├── actions_release.go ├── blockedips │ ├── blockedips.go │ ├── blockedips_dev.go │ ├── blockedips_test.go │ └── testutils.go ├── blockedipssummary │ ├── blockedips_summary.go │ ├── blockedips_summary_dev.go │ └── blockedips_summary_test.go ├── core │ ├── access.go │ ├── converter.go │ ├── converter_test.go │ ├── core.go │ ├── helpers.go │ ├── mock.go │ ├── mock │ │ └── placeholder.go │ ├── options.go │ ├── progress.go │ └── tools.go ├── default.go ├── detectiveescalation │ ├── escalation.go │ ├── escalation_dev.go │ └── escalation_test.go ├── engine.go ├── fetcher.go ├── highrate │ ├── high_status_rate_insight.go │ ├── high_status_rate_insight_dev.go │ └── high_status_rate_insight_test.go ├── importsummary │ ├── importsummary.go │ └── importsummary_dev.go ├── insights_test.go ├── localrbl │ ├── localrbl_test.go │ ├── rbl.go │ └── rbl_dev.go ├── mailinactivity │ ├── mail_inactivity_insight.go │ ├── mail_inactivity_insight_dev.go │ └── mail_inactivity_insight_test.go ├── messagerbl │ ├── rbl.go │ ├── rbl_dev.go │ └── rbl_test.go ├── migrations │ ├── 1_insights.go │ ├── 2_fix_fields_names.go │ ├── 4_historical_import.go │ ├── 5_insights_user_ratings.go │ ├── 7_index_archived.go │ └── insights_test.go ├── newsfeed │ ├── newsfeed.go │ ├── newsfeed_dev.go │ └── newsfeed_insight_test.go ├── notification_policies.go ├── notification_policies_test.go ├── testutil │ └── util.go └── welcome │ ├── welcome.go │ └── welcome_insight_test.go ├── intel ├── blockedips │ └── blockedips.go ├── collector │ ├── access.go │ ├── collector.go │ ├── collector_test.go │ ├── dispatcher.go │ └── reporter.go ├── connectionstats │ ├── reporter.go │ └── reporter_test.go ├── core │ └── core.go ├── example │ └── send_report.go ├── insights │ ├── reporter.go │ └── reporter_test.go ├── intel.go ├── intel_test.go ├── logslinecount │ ├── publisher.go │ ├── reporter.go │ └── reporter_test.go ├── mailactivity │ ├── reporter.go │ └── reporter_test.go ├── migrations │ ├── 1_basic_intel.go │ ├── 7_events.go │ └── 8_remove_invalid_events.go ├── receptor │ ├── mock.go │ ├── receptor.go │ ├── receptor_test.go │ └── requester.go └── topdomains │ ├── reporter.go │ └── reporter_test.go ├── lmsqlite3 ├── dbconn │ ├── conncounters.go │ ├── dbconn_test.go │ ├── prepared_stmts.go │ └── utils.go ├── lmsqlite3.go ├── lmsqlite3_test.go └── migrator │ └── migrator.go ├── localrbl ├── checker_test.go ├── dnschecker.go ├── localrbl.go └── rbl_providers.go ├── logeater ├── announcer │ ├── announcer.go │ ├── announcer_test.go │ └── synchronized.go ├── dirlogsource │ ├── helper_extractor.go │ ├── source.go │ └── source_test.go ├── dirwatcher │ ├── bzip2_test_helpers.go │ ├── dir_content.go │ ├── dir_content_for_rsync.go │ ├── dir_content_for_rsync_test.go │ ├── dir_importer.go │ ├── dir_importer_test.go │ ├── gzip_test_helpers.go │ ├── misc_test.go │ ├── regression_test.go │ ├── rsync_watcher.go │ ├── rsync_watcher_test.go │ ├── test_utils.go │ └── utils.go ├── filelogsource │ └── source.go ├── logsource │ ├── logsource.go │ └── reader.go ├── reader │ ├── reader.go │ └── reader_test.go ├── rsyncwatcher │ ├── watcher.go │ └── watcher_test.go ├── socketsource │ ├── source.go │ └── source_test.go └── transform │ ├── logstash-json.go │ ├── prepend-rfc3339.go │ ├── rfc3339.go │ ├── transform.go │ └── transform_test.go ├── main.go ├── messagerbl ├── default.go ├── rbl.go └── rbl_test.go ├── metadata ├── metadata.go ├── metadata_test.go ├── migrations │ ├── 3_rename_localrbl_to_globalsettings.go │ ├── 4_rename_postfix_ip_setting.go │ └── create_meta_table.go ├── serialwriterunner.go └── serialwriterunner_test.go ├── newsletter ├── newsletter.go ├── newsletter_dev.go ├── newsletter_release.go └── newsletter_test.go ├── notification ├── core │ ├── notifier.go │ ├── policy.go │ └── translate.go ├── email │ ├── .gitignore │ ├── email.go │ ├── email_test.go │ ├── fake_server.go │ └── templates │ │ ├── README.md │ │ ├── gen_template.go │ │ ├── template.mjml │ │ ├── template.mjml.license │ │ ├── template.thtml │ │ └── template.thtml.license ├── notification_test.go ├── notifications.go └── slack │ └── slack.go ├── pkg ├── closers │ ├── close_all.go │ └── close_all_test.go ├── ctxlogger │ └── ctxlog.go ├── dbrunner │ └── runner.go ├── httperror │ └── httperror.go ├── postfix │ ├── checksum.go │ ├── logparser │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bounce.go │ │ ├── cleanup.go │ │ ├── common.go │ │ ├── corpus │ │ │ ├── qmgr_returned_to_sender.txt │ │ │ ├── smtp_ok.txt │ │ │ ├── unsupported.txt │ │ │ ├── unsupported_dovecot.txt │ │ │ ├── unsupported_opendkim.txt │ │ │ └── unsupported_smtp.txt │ │ ├── dovecot.go │ │ ├── errors.go │ │ ├── example │ │ │ └── main.go │ │ ├── fuzz.sh │ │ ├── fuzz_with_clang.sh │ │ ├── fuzzing.go │ │ ├── header.go │ │ ├── lightmeter_dumped_header.go │ │ ├── lightmeter_relayed_bounces.go │ │ ├── parser.go │ │ ├── parser_test.go │ │ ├── performance_test.go │ │ ├── pickup.go │ │ ├── qmgr.go │ │ ├── rawparser │ │ │ ├── bounce.gen.go │ │ │ ├── bounce.go │ │ │ ├── bounce.rl │ │ │ ├── cleanup.gen.go │ │ │ ├── cleanup.go │ │ │ ├── cleanup.rl │ │ │ ├── common.rl │ │ │ ├── dovecot.gen.go │ │ │ ├── dovecot.go │ │ │ ├── dovecot.rl │ │ │ ├── errors.go │ │ │ ├── header.gen.go │ │ │ ├── header.rl │ │ │ ├── lightmeter_header.gen.go │ │ │ ├── lightmeter_header.go │ │ │ ├── lightmeter_header.rl │ │ │ ├── lightmeter_relayed_bounce.gen.go │ │ │ ├── lightmeter_relayed_bounce.rl │ │ │ ├── lightmeter_relayed_bounces.go │ │ │ ├── parser.go │ │ │ ├── payload.go │ │ │ ├── payload_types.go │ │ │ ├── pickup.gen.go │ │ │ ├── pickup.go │ │ │ ├── pickup.rl │ │ │ ├── qmgr.gen.go │ │ │ ├── qmgr.go │ │ │ ├── qmgr.rl │ │ │ ├── smtp.gen.go │ │ │ ├── smtp.go │ │ │ ├── smtp.rl │ │ │ ├── smtpd.gen.go │ │ │ ├── smtpd.go │ │ │ ├── smtpd.rl │ │ │ ├── version.gen.go │ │ │ ├── version.go │ │ │ └── version.rl │ │ ├── smtp.go │ │ ├── smtpd.go │ │ ├── sonar-project.properties │ │ ├── timeutil │ │ │ ├── timeformat.go │ │ │ ├── util.go │ │ │ └── util_test.go │ │ └── version.go │ ├── postfix_test.go │ └── publisher.go └── runner │ ├── cancellable_runner.go │ ├── cancellable_runner_test.go │ └── dependant.go ├── po ├── .gitignore ├── backend.pot ├── de │ └── LC_MESSAGES │ │ └── webui.po ├── el │ └── LC_MESSAGES │ │ ├── backend.po │ │ └── webui.po ├── en │ └── LC_MESSAGES │ │ ├── .gitkeep │ │ ├── backend.po │ │ └── webui.po ├── es_US │ └── LC_MESSAGES │ │ ├── backend.po │ │ └── webui.po ├── po.go ├── pt_BR │ └── LC_MESSAGES │ │ ├── backend.po │ │ └── webui.po ├── sq │ └── LC_MESSAGES │ │ ├── backend.po │ │ └── webui.po └── webui.pot ├── postfixversion ├── postfixversion.go └── postfixversion_test.go ├── rawlogsdb ├── accessor.go ├── migrations │ └── 1_create_logs_table.go ├── rawlogs.go └── rawlogs_test.go ├── recommendation ├── cmd │ └── gen.go ├── gen_dev.go ├── gen_release.go ├── instance.go ├── links_mapping_dev.json ├── links_mapping_release.json ├── url_container.go └── url_container_test.go ├── release_notes ├── 0.0.0 ├── 0.0.1 ├── 0.0.2 ├── 0.0.3 ├── 0.0.4 ├── 0.0.5 ├── 0.0.6 ├── 0.0.6-1 ├── 0.0.7 ├── 0.0.8 ├── 0.0.8-1 ├── 0.0.9 ├── 1.0.0 ├── 1.0.0-RC1 ├── 1.0.1 ├── 1.1.0 ├── 1.1.0-RC1 ├── 1.2.0 ├── 1.2.0-RC1 ├── 1.2.0-RC2 ├── 1.2.0-RC3 ├── 1.3.0 ├── 1.3.0-RC1 ├── 1.3.0-RC2 ├── 1.4.0 ├── 1.4.0-RC1 ├── 1.5.0 ├── 1.5.0-RC1 ├── 1.5.1 ├── 1.6.0 ├── 1.6.0-RC1 ├── 1.6.0-RC2 ├── 1.6.1 ├── 1.7.0 ├── 1.7.0-RC1 ├── 1.7.0-RC2 ├── 1.7.0-RC3 ├── 1.7.1 ├── 1.7.2 ├── 1.7.3 ├── 1.8.0 ├── 1.8.1 ├── 1.8.2 ├── 1.9.0 ├── 1.9.1 ├── 2.0.0-RC1 ├── 2.0.0-RC2 ├── 2.0.0-RC3 ├── 2.0.0-RC4 ├── 2.0.0-RC5 ├── 2.0.0-RC6 ├── 2.0.0-RC7 ├── 2.0.0-RC8 └── 2.0.0-RC9 ├── security.txt ├── security.txt.license ├── server ├── api_explorer_dev.go ├── api_explorer_release.go ├── profiler_dev.go ├── profiler_release.go ├── server.go ├── server_dev.go ├── server_release.go └── server_test.go ├── settings ├── detective │ └── detective.go ├── globalsettings │ ├── globalsettings.go │ └── settings_test.go ├── insights │ └── insights.go ├── setup.go ├── setup_test.go └── walkthrough │ └── walkthrough.go ├── sonar-project.properties ├── staticdata ├── staticdata.go ├── staticdata_stub.go ├── staticdata_test.go └── tools.go ├── subcommand ├── userchanges.go └── userchanges_test.go ├── test_files └── postfix_logs │ ├── complete.tar.gz │ └── individual_files │ ├── 10_pickup.log │ ├── 11_single_successful_delivery.log │ ├── 12_two_independent_deliveries_in_the_same_smtpd_process_in_order.log │ ├── 12_two_independent_deliveries_in_the_same_smtpd_process_mixed.log │ ├── 13_empty_msgid_issue_388.log │ ├── 14_reuse_of_queueid.log │ ├── 15_milter-reject.log │ ├── 16_corrupted_messageid.log │ ├── 17-smtpd-reject-with-milter-reject.log │ ├── 17-smtpd-reject.log │ ├── 18_expired.log │ ├── 18_pickup2.log │ ├── 19_postfix_version.log │ ├── 1_bounce_simple.log │ ├── 20_rejected.log │ ├── 21_deliveries_with_local_daemon.log │ ├── 22_virtual_delivery.log │ ├── 25_authclean_cleanup.log │ ├── 26_two_recipients.log │ ├── 27_one_sent_one_received.log │ ├── 28_received_bounce.log │ ├── 29_inbound_relayed_message_server_1.log │ ├── 29_inbound_relayed_message_server_2.log │ ├── 2_multiple_recipients_some_bounces.log │ ├── 2_multiple_recipients_some_bounces_no_last_remove.log │ ├── 30_in_reply_to_header.log │ ├── 31_inbound_reply.log │ ├── 31_relayed_bounce.log │ ├── 33_delivery_with_remote_id.log │ ├── 3_local_delivery.log │ ├── 4_lost_queue.log │ ├── 5_zimbra_amavisd.log │ ├── 6_deferred_message_retry.log │ ├── 7_only_connections_and_disconnections.log │ ├── 8_weird_log_file.log │ └── 9_mixed_messages.log ├── tools.go ├── tools ├── batch_log_cleaner.py ├── cc_cli.py ├── cmdline_usage │ ├── .gitignore │ └── cli.go ├── gen_deps_graph.py ├── go2po │ └── main.go ├── go_test.sh ├── gotestdata │ ├── invalid │ │ └── main.go │ ├── translator │ │ └── translator.go │ └── valid │ │ └── main.go ├── log_cleaner.py ├── mock_logs.sh ├── po2go │ └── main.go ├── poutil │ └── poutil.go └── update_cli_docs.sh ├── tracking ├── README.md ├── actions.go ├── commits_notifier.go ├── dispatching.go ├── filters.go ├── filters_test.go ├── migrations │ ├── 1_tracking.go │ ├── 2_messageid_log_location.go │ ├── 3_wipe_tracking_data.go │ ├── 4_delete_messageids_table.go │ └── 5_prenotification_table.go ├── multi_host.go ├── node_type.go ├── result.go ├── result_keys.go ├── settings.go ├── single_host.go ├── tracker_prepared_stmts.go ├── tracking.go ├── tracking_debug_util.go ├── tracking_non_debug.go ├── tracking_test.go └── utils.go ├── util ├── emailutil │ ├── disposable.go │ ├── email.go │ └── email_test.go ├── envutil │ └── env.go ├── errorutil │ ├── errors.go │ ├── errors_test.go │ ├── util.go │ └── util_test.go ├── httputil │ └── httputil.go ├── migrationutil │ ├── json_marshall_fix.go │ └── json_marshall_test.go ├── postfixutil │ └── postfix.go ├── settingsutil │ └── access.go ├── stringutil │ └── sensitive.go ├── temputil │ └── testutil.go ├── testutil │ ├── extract_tar_gz.go │ ├── tempdb.go │ └── testutil.go └── timeutil │ ├── clock.go │ ├── mock.go │ ├── time.go │ ├── time_test.go │ └── timeutil.go ├── vendor ├── github.com │ ├── KyleBanks │ │ └── depth │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── depth.go │ │ │ └── pkg.go │ ├── PuerkitoBio │ │ └── goquery │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── array.go │ │ │ ├── doc.go │ │ │ ├── expand.go │ │ │ ├── filter.go │ │ │ ├── iteration.go │ │ │ ├── manipulation.go │ │ │ ├── property.go │ │ │ ├── query.go │ │ │ ├── traversal.go │ │ │ ├── type.go │ │ │ └── utilities.go │ ├── alecthomas │ │ └── template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── exec.go │ │ │ ├── funcs.go │ │ │ ├── helper.go │ │ │ ├── parse │ │ │ ├── lex.go │ │ │ ├── node.go │ │ │ └── parse.go │ │ │ └── template.go │ ├── andybalholm │ │ └── cascadia │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── parser.go │ │ │ ├── pseudo_classes.go │ │ │ ├── selector.go │ │ │ ├── serialize.go │ │ │ └── specificity.go │ ├── chai2010 │ │ └── gettext-go │ │ │ ├── LICENSE │ │ │ └── po │ │ │ ├── comment.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── header.go │ │ │ ├── line_reader.go │ │ │ ├── message.go │ │ │ ├── re.go │ │ │ └── util.go │ ├── cpuguy83 │ │ └── go-md2man │ │ │ └── v2 │ │ │ ├── LICENSE.md │ │ │ └── md2man │ │ │ ├── md2man.go │ │ │ └── roff.go │ ├── dlclark │ │ └── regexp2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── ATTRIB │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fastclock.go │ │ │ ├── match.go │ │ │ ├── regexp.go │ │ │ ├── replace.go │ │ │ ├── runner.go │ │ │ ├── syntax │ │ │ ├── charclass.go │ │ │ ├── code.go │ │ │ ├── escape.go │ │ │ ├── fuzz.go │ │ │ ├── parser.go │ │ │ ├── prefix.go │ │ │ ├── replacerdata.go │ │ │ ├── tree.go │ │ │ └── writer.go │ │ │ └── testoutput1 │ ├── dsnet │ │ └── compress │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── api.go │ │ │ ├── bzip2 │ │ │ ├── bwt.go │ │ │ ├── common.go │ │ │ ├── fuzz_off.go │ │ │ ├── fuzz_on.go │ │ │ ├── internal │ │ │ │ └── sais │ │ │ │ │ ├── common.go │ │ │ │ │ ├── sais_byte.go │ │ │ │ │ └── sais_int.go │ │ │ ├── mtf_rle2.go │ │ │ ├── prefix.go │ │ │ ├── reader.go │ │ │ ├── rle1.go │ │ │ └── writer.go │ │ │ ├── internal │ │ │ ├── common.go │ │ │ ├── debug.go │ │ │ ├── errors │ │ │ │ └── errors.go │ │ │ ├── gofuzz.go │ │ │ ├── prefix │ │ │ │ ├── debug.go │ │ │ │ ├── decoder.go │ │ │ │ ├── encoder.go │ │ │ │ ├── prefix.go │ │ │ │ ├── range.go │ │ │ │ ├── reader.go │ │ │ │ ├── wrap.go │ │ │ │ └── writer.go │ │ │ └── release.go │ │ │ ├── zbench.sh │ │ │ ├── zfuzz.sh │ │ │ ├── zprof.sh │ │ │ └── ztest.sh │ ├── emersion │ │ ├── go-sasl │ │ │ ├── .build.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── anonymous.go │ │ │ ├── external.go │ │ │ ├── login.go │ │ │ ├── oauthbearer.go │ │ │ ├── plain.go │ │ │ └── sasl.go │ │ └── go-smtp │ │ │ ├── .build.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backend.go │ │ │ ├── client.go │ │ │ ├── conn.go │ │ │ ├── data.go │ │ │ ├── lengthlimit_reader.go │ │ │ ├── parse.go │ │ │ ├── server.go │ │ │ └── smtp.go │ ├── fsnotify │ │ └── fsnotify │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .mailmap │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backend_fen.go │ │ │ ├── backend_inotify.go │ │ │ ├── backend_kqueue.go │ │ │ ├── backend_other.go │ │ │ ├── backend_windows.go │ │ │ ├── fsnotify.go │ │ │ ├── mkdoc.zsh │ │ │ ├── system_bsd.go │ │ │ └── system_darwin.go │ ├── ghodss │ │ └── yaml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── fields.go │ │ │ └── yaml.go │ ├── go-openapi │ │ ├── jsonpointer │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── pointer.go │ │ ├── jsonreference │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── internal │ │ │ │ └── normalize_url.go │ │ │ └── reference.go │ │ ├── spec │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── bindata.go │ │ │ ├── cache.go │ │ │ ├── contact_info.go │ │ │ ├── debug.go │ │ │ ├── errors.go │ │ │ ├── expander.go │ │ │ ├── external_docs.go │ │ │ ├── header.go │ │ │ ├── info.go │ │ │ ├── items.go │ │ │ ├── license.go │ │ │ ├── normalizer.go │ │ │ ├── normalizer_nonwindows.go │ │ │ ├── normalizer_windows.go │ │ │ ├── operation.go │ │ │ ├── parameter.go │ │ │ ├── path_item.go │ │ │ ├── paths.go │ │ │ ├── properties.go │ │ │ ├── ref.go │ │ │ ├── resolver.go │ │ │ ├── response.go │ │ │ ├── responses.go │ │ │ ├── schema.go │ │ │ ├── schema_loader.go │ │ │ ├── security_scheme.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── tag.go │ │ │ ├── url_go18.go │ │ │ ├── url_go19.go │ │ │ ├── validations.go │ │ │ └── xml_object.go │ │ └── swag │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── convert.go │ │ │ ├── convert_types.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── json.go │ │ │ ├── loading.go │ │ │ ├── name_lexem.go │ │ │ ├── net.go │ │ │ ├── path.go │ │ │ ├── post_go18.go │ │ │ ├── post_go19.go │ │ │ ├── pre_go18.go │ │ │ ├── pre_go19.go │ │ │ ├── split.go │ │ │ ├── util.go │ │ │ └── yaml.go │ ├── golang │ │ └── mock │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── gomock │ │ │ ├── call.go │ │ │ ├── callset.go │ │ │ ├── controller.go │ │ │ └── matchers.go │ │ │ └── mockgen │ │ │ ├── mockgen.go │ │ │ ├── model │ │ │ └── model.go │ │ │ ├── parse.go │ │ │ ├── reflect.go │ │ │ ├── version.1.11.go │ │ │ └── version.1.12.go │ ├── gopherjs │ │ └── gopherjs │ │ │ ├── LICENSE │ │ │ └── js │ │ │ └── js.go │ ├── gorilla │ │ ├── securecookie │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── fuzz.go │ │ │ └── securecookie.go │ │ ├── sessions │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cookie.go │ │ │ ├── cookie_go111.go │ │ │ ├── doc.go │ │ │ ├── lex.go │ │ │ ├── options.go │ │ │ ├── options_go111.go │ │ │ ├── sessions.go │ │ │ └── store.go │ │ └── websocket │ │ │ ├── .gitignore │ │ │ ├── AUTHORS │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── client.go │ │ │ ├── compression.go │ │ │ ├── conn.go │ │ │ ├── doc.go │ │ │ ├── join.go │ │ │ ├── json.go │ │ │ ├── mask.go │ │ │ ├── mask_safe.go │ │ │ ├── prepared.go │ │ │ ├── proxy.go │ │ │ ├── server.go │ │ │ ├── tls_handshake.go │ │ │ ├── tls_handshake_116.go │ │ │ ├── util.go │ │ │ └── x_net_proxy.go │ ├── hashicorp │ │ ├── errwrap │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── errwrap.go │ │ └── go-multierror │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── append.go │ │ │ ├── flatten.go │ │ │ ├── format.go │ │ │ ├── group.go │ │ │ ├── multierror.go │ │ │ ├── prefix.go │ │ │ └── sort.go │ ├── hlubek │ │ └── readercomp │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── readercomp.go │ ├── hpcloud │ │ └── tail │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CHANGES.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── ratelimiter │ │ │ ├── Licence │ │ │ ├── leakybucket.go │ │ │ ├── memory.go │ │ │ └── storage.go │ │ │ ├── tail.go │ │ │ ├── tail_posix.go │ │ │ ├── tail_windows.go │ │ │ ├── util │ │ │ └── util.go │ │ │ ├── watch │ │ │ ├── filechanges.go │ │ │ ├── inotify.go │ │ │ ├── inotify_tracker.go │ │ │ ├── polling.go │ │ │ └── watch.go │ │ │ └── winfile │ │ │ └── winfile.go │ ├── imdario │ │ └── mergo │ │ │ ├── .deepsource.toml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── map.go │ │ │ ├── merge.go │ │ │ └── mergo.go │ ├── josharian │ │ └── intern │ │ │ ├── README.md │ │ │ ├── intern.go │ │ │ └── license.md │ ├── json-iterator │ │ └── go │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── adapter.go │ │ │ ├── any.go │ │ │ ├── any_array.go │ │ │ ├── any_bool.go │ │ │ ├── any_float.go │ │ │ ├── any_int32.go │ │ │ ├── any_int64.go │ │ │ ├── any_invalid.go │ │ │ ├── any_nil.go │ │ │ ├── any_number.go │ │ │ ├── any_object.go │ │ │ ├── any_str.go │ │ │ ├── any_uint32.go │ │ │ ├── any_uint64.go │ │ │ ├── build.sh │ │ │ ├── config.go │ │ │ ├── fuzzy_mode_convert_table.md │ │ │ ├── iter.go │ │ │ ├── iter_array.go │ │ │ ├── iter_float.go │ │ │ ├── iter_int.go │ │ │ ├── iter_object.go │ │ │ ├── iter_skip.go │ │ │ ├── iter_skip_sloppy.go │ │ │ ├── iter_skip_strict.go │ │ │ ├── iter_str.go │ │ │ ├── jsoniter.go │ │ │ ├── pool.go │ │ │ ├── reflect.go │ │ │ ├── reflect_array.go │ │ │ ├── reflect_dynamic.go │ │ │ ├── reflect_extension.go │ │ │ ├── reflect_json_number.go │ │ │ ├── reflect_json_raw_message.go │ │ │ ├── reflect_map.go │ │ │ ├── reflect_marshaler.go │ │ │ ├── reflect_native.go │ │ │ ├── reflect_optional.go │ │ │ ├── reflect_slice.go │ │ │ ├── reflect_struct_decoder.go │ │ │ ├── reflect_struct_encoder.go │ │ │ ├── stream.go │ │ │ ├── stream_float.go │ │ │ ├── stream_int.go │ │ │ ├── stream_str.go │ │ │ └── test.sh │ ├── jstemmer │ │ └── go-junit-report │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── formatter │ │ │ └── formatter.go │ │ │ ├── go-junit-report.go │ │ │ └── parser │ │ │ └── parser.go │ ├── jtolds │ │ └── gls │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── context.go │ │ │ ├── gen_sym.go │ │ │ ├── gid.go │ │ │ ├── id_pool.go │ │ │ ├── stack_tags.go │ │ │ ├── stack_tags_js.go │ │ │ └── stack_tags_main.go │ ├── mailru │ │ └── easyjson │ │ │ ├── LICENSE │ │ │ ├── buffer │ │ │ └── pool.go │ │ │ ├── jlexer │ │ │ ├── bytestostr.go │ │ │ ├── bytestostr_nounsafe.go │ │ │ ├── error.go │ │ │ └── lexer.go │ │ │ └── jwriter │ │ │ └── writer.go │ ├── mattn │ │ ├── go-colorable │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── colorable_appengine.go │ │ │ ├── colorable_others.go │ │ │ ├── colorable_windows.go │ │ │ ├── go.test.sh │ │ │ └── noncolorable.go │ │ ├── go-isatty │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.go │ │ │ ├── go.test.sh │ │ │ ├── isatty_bsd.go │ │ │ ├── isatty_others.go │ │ │ ├── isatty_plan9.go │ │ │ ├── isatty_solaris.go │ │ │ ├── isatty_tcgets.go │ │ │ └── isatty_windows.go │ │ └── go-sqlite3 │ │ │ ├── .codecov.yml │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── backup.go │ │ │ ├── callback.go │ │ │ ├── convert.go │ │ │ ├── doc.go │ │ │ ├── error.go │ │ │ ├── sqlite3-binding.c │ │ │ ├── sqlite3-binding.h │ │ │ ├── sqlite3.go │ │ │ ├── sqlite3_context.go │ │ │ ├── sqlite3_func_crypt.go │ │ │ ├── sqlite3_go18.go │ │ │ ├── sqlite3_libsqlite3.go │ │ │ ├── sqlite3_load_extension.go │ │ │ ├── sqlite3_load_extension_omit.go │ │ │ ├── sqlite3_opt_allow_uri_authority.go │ │ │ ├── sqlite3_opt_app_armor.go │ │ │ ├── sqlite3_opt_column_metadata.go │ │ │ ├── sqlite3_opt_foreign_keys.go │ │ │ ├── sqlite3_opt_fts5.go │ │ │ ├── sqlite3_opt_icu.go │ │ │ ├── sqlite3_opt_introspect.go │ │ │ ├── sqlite3_opt_math_functions.go │ │ │ ├── sqlite3_opt_os_trace.go │ │ │ ├── sqlite3_opt_preupdate.go │ │ │ ├── sqlite3_opt_preupdate_hook.go │ │ │ ├── sqlite3_opt_preupdate_omit.go │ │ │ ├── sqlite3_opt_secure_delete.go │ │ │ ├── sqlite3_opt_secure_delete_fast.go │ │ │ ├── sqlite3_opt_stat4.go │ │ │ ├── sqlite3_opt_unlock_notify.c │ │ │ ├── sqlite3_opt_unlock_notify.go │ │ │ ├── sqlite3_opt_userauth.go │ │ │ ├── sqlite3_opt_userauth_omit.go │ │ │ ├── sqlite3_opt_vacuum_full.go │ │ │ ├── sqlite3_opt_vacuum_incr.go │ │ │ ├── sqlite3_opt_vtable.go │ │ │ ├── sqlite3_other.go │ │ │ ├── sqlite3_solaris.go │ │ │ ├── sqlite3_trace.go │ │ │ ├── sqlite3_type.go │ │ │ ├── sqlite3_usleep_windows.go │ │ │ ├── sqlite3_windows.go │ │ │ └── sqlite3ext.h │ ├── mmcdole │ │ ├── gofeed │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── atom │ │ │ │ ├── feed.go │ │ │ │ └── parser.go │ │ │ ├── coverage.out │ │ │ ├── detector.go │ │ │ ├── extensions │ │ │ │ ├── dublincore.go │ │ │ │ ├── extensions.go │ │ │ │ └── itunes.go │ │ │ ├── feed.go │ │ │ ├── internal │ │ │ │ └── shared │ │ │ │ │ ├── charsetconv.go │ │ │ │ │ ├── dateparser.go │ │ │ │ │ ├── extparser.go │ │ │ │ │ ├── parseutils.go │ │ │ │ │ ├── xmlbase.go │ │ │ │ │ └── xmlsanitizer.go │ │ │ ├── json │ │ │ │ ├── feed.go │ │ │ │ └── parser.go │ │ │ ├── parser.go │ │ │ ├── rss │ │ │ │ ├── feed.go │ │ │ │ └── parser.go │ │ │ └── translator.go │ │ └── goxpp │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── xpp.go │ ├── modern-go │ │ ├── concurrent │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── executor.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_19.go │ │ │ ├── log.go │ │ │ ├── test.sh │ │ │ └── unbounded_executor.go │ │ └── reflect2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── go_above_118.go │ │ │ ├── go_above_19.go │ │ │ ├── go_below_118.go │ │ │ ├── reflect2.go │ │ │ ├── reflect2_amd64.s │ │ │ ├── reflect2_kind.go │ │ │ ├── relfect2_386.s │ │ │ ├── relfect2_amd64p32.s │ │ │ ├── relfect2_arm.s │ │ │ ├── relfect2_arm64.s │ │ │ ├── relfect2_mips64x.s │ │ │ ├── relfect2_mipsx.s │ │ │ ├── relfect2_ppc64x.s │ │ │ ├── relfect2_s390x.s │ │ │ ├── safe_field.go │ │ │ ├── safe_map.go │ │ │ ├── safe_slice.go │ │ │ ├── safe_struct.go │ │ │ ├── safe_type.go │ │ │ ├── type_map.go │ │ │ ├── unsafe_array.go │ │ │ ├── unsafe_eface.go │ │ │ ├── unsafe_field.go │ │ │ ├── unsafe_iface.go │ │ │ ├── unsafe_link.go │ │ │ ├── unsafe_map.go │ │ │ ├── unsafe_ptr.go │ │ │ ├── unsafe_slice.go │ │ │ ├── unsafe_struct.go │ │ │ └── unsafe_type.go │ ├── mrichman │ │ └── godnsbl │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── godnsbl.go │ ├── pkg │ │ └── errors │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── appveyor.yml │ │ │ ├── errors.go │ │ │ ├── go113.go │ │ │ └── stack.go │ ├── pressly │ │ └── goose │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── _go.mod │ │ │ ├── _go.sum │ │ │ ├── create.go │ │ │ ├── db.go │ │ │ ├── dialect.go │ │ │ ├── down.go │ │ │ ├── fix.go │ │ │ ├── goose.go │ │ │ ├── helpers.go │ │ │ ├── log.go │ │ │ ├── migrate.go │ │ │ ├── migration.go │ │ │ ├── migration_sql.go │ │ │ ├── redo.go │ │ │ ├── reset.go │ │ │ ├── sql_parser.go │ │ │ ├── status.go │ │ │ ├── up.go │ │ │ └── version.go │ ├── rs │ │ └── zerolog │ │ │ ├── .gitignore │ │ │ ├── CNAME │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── _config.yml │ │ │ ├── array.go │ │ │ ├── console.go │ │ │ ├── context.go │ │ │ ├── ctx.go │ │ │ ├── encoder.go │ │ │ ├── encoder_cbor.go │ │ │ ├── encoder_json.go │ │ │ ├── event.go │ │ │ ├── fields.go │ │ │ ├── globals.go │ │ │ ├── go112.go │ │ │ ├── hook.go │ │ │ ├── internal │ │ │ ├── cbor │ │ │ │ ├── README.md │ │ │ │ ├── base.go │ │ │ │ ├── cbor.go │ │ │ │ ├── decode_stream.go │ │ │ │ ├── string.go │ │ │ │ ├── time.go │ │ │ │ └── types.go │ │ │ └── json │ │ │ │ ├── base.go │ │ │ │ ├── bytes.go │ │ │ │ ├── string.go │ │ │ │ ├── time.go │ │ │ │ └── types.go │ │ │ ├── log.go │ │ │ ├── log │ │ │ └── log.go │ │ │ ├── not_go112.go │ │ │ ├── pretty.png │ │ │ ├── sampler.go │ │ │ ├── syslog.go │ │ │ └── writer.go │ ├── russross │ │ └── blackfriday │ │ │ └── v2 │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── block.go │ │ │ ├── doc.go │ │ │ ├── entities.go │ │ │ ├── esc.go │ │ │ ├── html.go │ │ │ ├── inline.go │ │ │ ├── markdown.go │ │ │ ├── node.go │ │ │ └── smartypants.go │ ├── satori │ │ └── go.uuid │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── codec.go │ │ │ ├── generator.go │ │ │ ├── sql.go │ │ │ └── uuid.go │ ├── shurcooL │ │ ├── httpfs │ │ │ ├── LICENSE │ │ │ └── vfsutil │ │ │ │ ├── file.go │ │ │ │ ├── vfsutil.go │ │ │ │ └── walk.go │ │ └── vfsgen │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── commentwriter.go │ │ │ ├── doc.go │ │ │ ├── generator.go │ │ │ ├── options.go │ │ │ └── stringwriter.go │ ├── slack-go │ │ └── slack │ │ │ ├── .gitignore │ │ │ ├── .golangci.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── TODO.txt │ │ │ ├── admin.go │ │ │ ├── apps.go │ │ │ ├── attachments.go │ │ │ ├── audit.go │ │ │ ├── auth.go │ │ │ ├── block.go │ │ │ ├── block_action.go │ │ │ ├── block_context.go │ │ │ ├── block_conv.go │ │ │ ├── block_divider.go │ │ │ ├── block_element.go │ │ │ ├── block_file.go │ │ │ ├── block_header.go │ │ │ ├── block_image.go │ │ │ ├── block_input.go │ │ │ ├── block_object.go │ │ │ ├── block_rich_text.go │ │ │ ├── block_section.go │ │ │ ├── block_unknown.go │ │ │ ├── bookmarks.go │ │ │ ├── bots.go │ │ │ ├── channels.go │ │ │ ├── chat.go │ │ │ ├── comment.go │ │ │ ├── conversation.go │ │ │ ├── dialog.go │ │ │ ├── dialog_select.go │ │ │ ├── dialog_text.go │ │ │ ├── dnd.go │ │ │ ├── emoji.go │ │ │ ├── errors.go │ │ │ ├── files.go │ │ │ ├── groups.go │ │ │ ├── history.go │ │ │ ├── im.go │ │ │ ├── info.go │ │ │ ├── interactions.go │ │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── errorsx │ │ │ │ └── errorsx.go │ │ │ └── timex │ │ │ │ └── timex.go │ │ │ ├── item.go │ │ │ ├── logger.go │ │ │ ├── logo.png │ │ │ ├── messageID.go │ │ │ ├── messages.go │ │ │ ├── metadata.go │ │ │ ├── misc.go │ │ │ ├── oauth.go │ │ │ ├── pagination.go │ │ │ ├── pins.go │ │ │ ├── reactions.go │ │ │ ├── reminders.go │ │ │ ├── remotefiles.go │ │ │ ├── rtm.go │ │ │ ├── search.go │ │ │ ├── security.go │ │ │ ├── slack.go │ │ │ ├── slackutilsx │ │ │ └── slackutilsx.go │ │ │ ├── slash.go │ │ │ ├── socket_mode.go │ │ │ ├── stars.go │ │ │ ├── status_code_error.go │ │ │ ├── team.go │ │ │ ├── usergroups.go │ │ │ ├── users.go │ │ │ ├── views.go │ │ │ ├── webhooks.go │ │ │ ├── websocket.go │ │ │ ├── websocket_channels.go │ │ │ ├── websocket_desktop_notification.go │ │ │ ├── websocket_dm.go │ │ │ ├── websocket_dnd.go │ │ │ ├── websocket_files.go │ │ │ ├── websocket_groups.go │ │ │ ├── websocket_internals.go │ │ │ ├── websocket_managed_conn.go │ │ │ ├── websocket_misc.go │ │ │ ├── websocket_mobile_in_app_notification.go │ │ │ ├── websocket_pins.go │ │ │ ├── websocket_reactions.go │ │ │ ├── websocket_stars.go │ │ │ ├── websocket_subteam.go │ │ │ ├── websocket_teams.go │ │ │ ├── workflow_step.go │ │ │ └── workflow_step_execute.go │ ├── smartystreets │ │ ├── assertions │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── collections.go │ │ │ ├── doc.go │ │ │ ├── equal_method.go │ │ │ ├── equality.go │ │ │ ├── equality_diff.go │ │ │ ├── filter.go │ │ │ ├── internal │ │ │ │ ├── go-diff │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── diffmatchpatch │ │ │ │ │ │ ├── diff.go │ │ │ │ │ │ ├── diffmatchpatch.go │ │ │ │ │ │ ├── match.go │ │ │ │ │ │ ├── mathutil.go │ │ │ │ │ │ ├── operation_string.go │ │ │ │ │ │ ├── patch.go │ │ │ │ │ │ └── stringutil.go │ │ │ │ ├── go-render │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── render │ │ │ │ │ │ ├── render.go │ │ │ │ │ │ └── render_time.go │ │ │ │ └── oglematchers │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── any_of.go │ │ │ │ │ ├── contains.go │ │ │ │ │ ├── deep_equals.go │ │ │ │ │ ├── equals.go │ │ │ │ │ ├── greater_or_equal.go │ │ │ │ │ ├── greater_than.go │ │ │ │ │ ├── less_or_equal.go │ │ │ │ │ ├── less_than.go │ │ │ │ │ ├── matcher.go │ │ │ │ │ ├── not.go │ │ │ │ │ └── transform_description.go │ │ │ ├── messages.go │ │ │ ├── panic.go │ │ │ ├── quantity.go │ │ │ ├── serializer.go │ │ │ ├── strings.go │ │ │ ├── time.go │ │ │ └── type.go │ │ └── goconvey │ │ │ ├── LICENSE.md │ │ │ └── convey │ │ │ ├── assertions.go │ │ │ ├── context.go │ │ │ ├── convey.goconvey │ │ │ ├── discovery.go │ │ │ ├── doc.go │ │ │ ├── gotest │ │ │ └── utils.go │ │ │ ├── init.go │ │ │ ├── nilReporter.go │ │ │ └── reporting │ │ │ ├── console.go │ │ │ ├── doc.go │ │ │ ├── dot.go │ │ │ ├── gotest.go │ │ │ ├── init.go │ │ │ ├── json.go │ │ │ ├── printer.go │ │ │ ├── problems.go │ │ │ ├── reporter.go │ │ │ ├── reporting.goconvey │ │ │ ├── reports.go │ │ │ ├── statistics.go │ │ │ └── story.go │ ├── swaggo │ │ ├── files │ │ │ ├── .gitmodules │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── ab0x.go │ │ │ ├── b0xfile__favicon-16x16.png.go │ │ │ ├── b0xfile__favicon-32x32.png.go │ │ │ ├── b0xfile__index.css.go │ │ │ ├── b0xfile__index.html.go │ │ │ ├── b0xfile__oauth2-redirect.html.go │ │ │ ├── b0xfile__swagger-initializer.js.go │ │ │ ├── b0xfile__swagger-ui-bundle.js.go │ │ │ ├── b0xfile__swagger-ui-bundle.js.map.go │ │ │ ├── b0xfile__swagger-ui-es-bundle-core.js.go │ │ │ ├── b0xfile__swagger-ui-es-bundle-core.js.map.go │ │ │ ├── b0xfile__swagger-ui-es-bundle.js.go │ │ │ ├── b0xfile__swagger-ui-es-bundle.js.map.go │ │ │ ├── b0xfile__swagger-ui-standalone-preset.js.go │ │ │ ├── b0xfile__swagger-ui-standalone-preset.js.map.go │ │ │ ├── b0xfile__swagger-ui.css.go │ │ │ ├── b0xfile__swagger-ui.css.map.go │ │ │ ├── b0xfile__swagger-ui.js.go │ │ │ ├── b0xfile__swagger-ui.js.map.go │ │ │ └── filebox.go │ │ ├── http-swagger │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── LICENSE │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ └── swagger.go │ │ └── swag │ │ │ ├── .gitignore │ │ │ ├── .goreleaser.yml │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── Makefile │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ ├── README_zh-CN.md │ │ │ ├── cmd │ │ │ └── swag │ │ │ │ └── main.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── enums.go │ │ │ ├── field_parser.go │ │ │ ├── format │ │ │ └── format.go │ │ │ ├── formatter.go │ │ │ ├── gen │ │ │ └── gen.go │ │ │ ├── generics.go │ │ │ ├── generics_other.go │ │ │ ├── golist.go │ │ │ ├── license │ │ │ ├── operation.go │ │ │ ├── package.go │ │ │ ├── packages.go │ │ │ ├── parser.go │ │ │ ├── schema.go │ │ │ ├── spec.go │ │ │ ├── swagger.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ ├── utils_go18.go │ │ │ ├── utils_other.go │ │ │ └── version.go │ ├── t-yuki │ │ └── gocover-cobertura │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cobertura.go │ │ │ ├── gocover-cobertura.go │ │ │ └── profile.go │ ├── trustelem │ │ └── zxcvbn │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── adjacency │ │ │ ├── adjacency.go │ │ │ └── graphs.go │ │ │ ├── frequency │ │ │ └── lists.go │ │ │ ├── internal │ │ │ └── mathutils │ │ │ │ └── mathutils.go │ │ │ ├── match │ │ │ ├── match.go │ │ │ └── sort.go │ │ │ ├── matching │ │ │ ├── date.go │ │ │ ├── dictionary.go │ │ │ ├── leet.go │ │ │ ├── omnimatch.go │ │ │ ├── regexp.go │ │ │ ├── repeat.go │ │ │ ├── reverse_dictionnary.go │ │ │ ├── sequence.go │ │ │ └── spatial.go │ │ │ ├── scoring │ │ │ ├── guesses.go │ │ │ └── scoring.go │ │ │ ├── time_estimate.go │ │ │ └── zxcvbn.go │ ├── urfave │ │ └── cli │ │ │ └── v2 │ │ │ ├── .flake8 │ │ │ ├── .gitignore │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── args.go │ │ │ ├── category.go │ │ │ ├── cli.go │ │ │ ├── command.go │ │ │ ├── context.go │ │ │ ├── docs.go │ │ │ ├── errors.go │ │ │ ├── fish.go │ │ │ ├── flag-spec.yaml │ │ │ ├── flag.go │ │ │ ├── flag_bool.go │ │ │ ├── flag_duration.go │ │ │ ├── flag_ext.go │ │ │ ├── flag_float64.go │ │ │ ├── flag_float64_slice.go │ │ │ ├── flag_generic.go │ │ │ ├── flag_int.go │ │ │ ├── flag_int64.go │ │ │ ├── flag_int64_slice.go │ │ │ ├── flag_int_slice.go │ │ │ ├── flag_path.go │ │ │ ├── flag_string.go │ │ │ ├── flag_string_slice.go │ │ │ ├── flag_timestamp.go │ │ │ ├── flag_uint.go │ │ │ ├── flag_uint64.go │ │ │ ├── flag_uint64_slice.go │ │ │ ├── flag_uint_slice.go │ │ │ ├── funcs.go │ │ │ ├── godoc-current.txt │ │ │ ├── help.go │ │ │ ├── mkdocs-requirements.txt │ │ │ ├── mkdocs.yml │ │ │ ├── parse.go │ │ │ ├── sliceflag.go │ │ │ ├── sliceflag_pre18.go │ │ │ ├── sort.go │ │ │ ├── suggestions.go │ │ │ ├── template.go │ │ │ └── zz_generated.flags.go │ ├── xhit │ │ └── go-str2duration │ │ │ └── v2 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── str2duration.go │ └── xrash │ │ └── smetrics │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── doc.go │ │ ├── hamming.go │ │ ├── jaro-winkler.go │ │ ├── jaro.go │ │ ├── soundex.go │ │ ├── ukkonen.go │ │ └── wagner-fischer.go ├── golang.org │ └── x │ │ ├── crypto │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── bcrypt │ │ │ ├── base64.go │ │ │ └── bcrypt.go │ │ └── blowfish │ │ │ ├── block.go │ │ │ ├── cipher.go │ │ │ └── const.go │ │ ├── mod │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ │ └── lazyregexp │ │ │ │ └── lazyre.go │ │ ├── modfile │ │ │ ├── print.go │ │ │ ├── read.go │ │ │ ├── rule.go │ │ │ └── work.go │ │ ├── module │ │ │ ├── module.go │ │ │ └── pseudo.go │ │ └── semver │ │ │ └── semver.go │ │ ├── net │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── html │ │ │ ├── atom │ │ │ │ ├── atom.go │ │ │ │ └── table.go │ │ │ ├── charset │ │ │ │ └── charset.go │ │ │ ├── const.go │ │ │ ├── doc.go │ │ │ ├── doctype.go │ │ │ ├── entity.go │ │ │ ├── escape.go │ │ │ ├── foreign.go │ │ │ ├── node.go │ │ │ ├── parse.go │ │ │ ├── render.go │ │ │ └── token.go │ │ ├── publicsuffix │ │ │ ├── data │ │ │ │ ├── children │ │ │ │ ├── nodes │ │ │ │ └── text │ │ │ ├── list.go │ │ │ └── table.go │ │ └── webdav │ │ │ ├── file.go │ │ │ ├── if.go │ │ │ ├── internal │ │ │ └── xml │ │ │ │ ├── README │ │ │ │ ├── marshal.go │ │ │ │ ├── read.go │ │ │ │ ├── typeinfo.go │ │ │ │ └── xml.go │ │ │ ├── lock.go │ │ │ ├── prop.go │ │ │ ├── webdav.go │ │ │ └── xml.go │ │ ├── sys │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── execabs │ │ │ ├── execabs.go │ │ │ ├── execabs_go118.go │ │ │ └── execabs_go119.go │ │ ├── internal │ │ │ └── unsafeheader │ │ │ │ └── unsafeheader.go │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── affinity_linux.go │ │ │ ├── aliases.go │ │ │ ├── asm_aix_ppc64.s │ │ │ ├── asm_bsd_386.s │ │ │ ├── asm_bsd_amd64.s │ │ │ ├── asm_bsd_arm.s │ │ │ ├── asm_bsd_arm64.s │ │ │ ├── asm_bsd_ppc64.s │ │ │ ├── asm_bsd_riscv64.s │ │ │ ├── asm_linux_386.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_arm64.s │ │ │ ├── asm_linux_loong64.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_linux_mipsx.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_riscv64.s │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_openbsd_mips64.s │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── asm_zos_s390x.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── cap_freebsd.go │ │ │ ├── constants.go │ │ │ ├── dev_aix_ppc.go │ │ │ ├── dev_aix_ppc64.go │ │ │ ├── dev_darwin.go │ │ │ ├── dev_dragonfly.go │ │ │ ├── dev_freebsd.go │ │ │ ├── dev_linux.go │ │ │ ├── dev_netbsd.go │ │ │ ├── dev_openbsd.go │ │ │ ├── dev_zos.go │ │ │ ├── dirent.go │ │ │ ├── endian_big.go │ │ │ ├── endian_little.go │ │ │ ├── env_unix.go │ │ │ ├── epoll_zos.go │ │ │ ├── fcntl.go │ │ │ ├── fcntl_darwin.go │ │ │ ├── fcntl_linux_32bit.go │ │ │ ├── fdset.go │ │ │ ├── fstatfs_zos.go │ │ │ ├── gccgo.go │ │ │ ├── gccgo_c.c │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── ifreq_linux.go │ │ │ ├── ioctl.go │ │ │ ├── ioctl_linux.go │ │ │ ├── ioctl_zos.go │ │ │ ├── mkall.sh │ │ │ ├── mkerrors.sh │ │ │ ├── pagesize_unix.go │ │ │ ├── pledge_openbsd.go │ │ │ ├── ptrace_darwin.go │ │ │ ├── ptrace_ios.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── readdirent_getdents.go │ │ │ ├── readdirent_getdirentries.go │ │ │ ├── sockcmsg_dragonfly.go │ │ │ ├── sockcmsg_linux.go │ │ │ ├── sockcmsg_unix.go │ │ │ ├── sockcmsg_unix_other.go │ │ │ ├── syscall.go │ │ │ ├── syscall_aix.go │ │ │ ├── syscall_aix_ppc.go │ │ │ ├── syscall_aix_ppc64.go │ │ │ ├── syscall_bsd.go │ │ │ ├── syscall_darwin.go │ │ │ ├── syscall_darwin_amd64.go │ │ │ ├── syscall_darwin_arm64.go │ │ │ ├── syscall_darwin_libSystem.go │ │ │ ├── syscall_dragonfly.go │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ ├── syscall_freebsd.go │ │ │ ├── syscall_freebsd_386.go │ │ │ ├── syscall_freebsd_amd64.go │ │ │ ├── syscall_freebsd_arm.go │ │ │ ├── syscall_freebsd_arm64.go │ │ │ ├── syscall_freebsd_riscv64.go │ │ │ ├── syscall_hurd.go │ │ │ ├── syscall_hurd_386.go │ │ │ ├── syscall_illumos.go │ │ │ ├── syscall_linux.go │ │ │ ├── syscall_linux_386.go │ │ │ ├── syscall_linux_alarm.go │ │ │ ├── syscall_linux_amd64.go │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ ├── syscall_linux_arm.go │ │ │ ├── syscall_linux_arm64.go │ │ │ ├── syscall_linux_gc.go │ │ │ ├── syscall_linux_gc_386.go │ │ │ ├── syscall_linux_gc_arm.go │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ ├── syscall_linux_loong64.go │ │ │ ├── syscall_linux_mips64x.go │ │ │ ├── syscall_linux_mipsx.go │ │ │ ├── syscall_linux_ppc.go │ │ │ ├── syscall_linux_ppc64x.go │ │ │ ├── syscall_linux_riscv64.go │ │ │ ├── syscall_linux_s390x.go │ │ │ ├── syscall_linux_sparc64.go │ │ │ ├── syscall_netbsd.go │ │ │ ├── syscall_netbsd_386.go │ │ │ ├── syscall_netbsd_amd64.go │ │ │ ├── syscall_netbsd_arm.go │ │ │ ├── syscall_netbsd_arm64.go │ │ │ ├── syscall_openbsd.go │ │ │ ├── syscall_openbsd_386.go │ │ │ ├── syscall_openbsd_amd64.go │ │ │ ├── syscall_openbsd_arm.go │ │ │ ├── syscall_openbsd_arm64.go │ │ │ ├── syscall_openbsd_libc.go │ │ │ ├── syscall_openbsd_mips64.go │ │ │ ├── syscall_openbsd_ppc64.go │ │ │ ├── syscall_openbsd_riscv64.go │ │ │ ├── syscall_solaris.go │ │ │ ├── syscall_solaris_amd64.go │ │ │ ├── syscall_unix.go │ │ │ ├── syscall_unix_gc.go │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ ├── syscall_zos_s390x.go │ │ │ ├── sysvshm_linux.go │ │ │ ├── sysvshm_unix.go │ │ │ ├── sysvshm_unix_other.go │ │ │ ├── timestruct.go │ │ │ ├── unveil_openbsd.go │ │ │ ├── xattr_bsd.go │ │ │ ├── zerrors_aix_ppc.go │ │ │ ├── zerrors_aix_ppc64.go │ │ │ ├── zerrors_darwin_amd64.go │ │ │ ├── zerrors_darwin_arm64.go │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ ├── zerrors_freebsd_386.go │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ ├── zerrors_freebsd_arm.go │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ ├── zerrors_freebsd_riscv64.go │ │ │ ├── zerrors_linux.go │ │ │ ├── zerrors_linux_386.go │ │ │ ├── zerrors_linux_amd64.go │ │ │ ├── zerrors_linux_arm.go │ │ │ ├── zerrors_linux_arm64.go │ │ │ ├── zerrors_linux_loong64.go │ │ │ ├── zerrors_linux_mips.go │ │ │ ├── zerrors_linux_mips64.go │ │ │ ├── zerrors_linux_mips64le.go │ │ │ ├── zerrors_linux_mipsle.go │ │ │ ├── zerrors_linux_ppc.go │ │ │ ├── zerrors_linux_ppc64.go │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ ├── zerrors_linux_riscv64.go │ │ │ ├── zerrors_linux_s390x.go │ │ │ ├── zerrors_linux_sparc64.go │ │ │ ├── zerrors_netbsd_386.go │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ ├── zerrors_netbsd_arm.go │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ ├── zerrors_openbsd_386.go │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ ├── zerrors_openbsd_arm.go │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ ├── zerrors_openbsd_mips64.go │ │ │ ├── zerrors_openbsd_ppc64.go │ │ │ ├── zerrors_openbsd_riscv64.go │ │ │ ├── zerrors_solaris_amd64.go │ │ │ ├── zerrors_zos_s390x.go │ │ │ ├── zptrace_armnn_linux.go │ │ │ ├── zptrace_linux_arm64.go │ │ │ ├── zptrace_mipsnn_linux.go │ │ │ ├── zptrace_mipsnnle_linux.go │ │ │ ├── zptrace_x86_linux.go │ │ │ ├── zsyscall_aix_ppc.go │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ ├── zsyscall_freebsd_386.go │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ ├── zsyscall_freebsd_riscv64.go │ │ │ ├── zsyscall_illumos_amd64.go │ │ │ ├── zsyscall_linux.go │ │ │ ├── zsyscall_linux_386.go │ │ │ ├── zsyscall_linux_amd64.go │ │ │ ├── zsyscall_linux_arm.go │ │ │ ├── zsyscall_linux_arm64.go │ │ │ ├── zsyscall_linux_loong64.go │ │ │ ├── zsyscall_linux_mips.go │ │ │ ├── zsyscall_linux_mips64.go │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ ├── zsyscall_linux_ppc.go │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ ├── zsyscall_linux_s390x.go │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ ├── zsyscall_netbsd_386.go │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ ├── zsyscall_openbsd_386.go │ │ │ ├── zsyscall_openbsd_386.s │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ ├── zsyscall_openbsd_amd64.s │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ ├── zsyscall_openbsd_arm.s │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ ├── zsyscall_openbsd_arm64.s │ │ │ ├── zsyscall_openbsd_mips64.go │ │ │ ├── zsyscall_openbsd_mips64.s │ │ │ ├── zsyscall_openbsd_ppc64.go │ │ │ ├── zsyscall_openbsd_ppc64.s │ │ │ ├── zsyscall_openbsd_riscv64.go │ │ │ ├── zsyscall_openbsd_riscv64.s │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ ├── zsyscall_zos_s390x.go │ │ │ ├── zsysctl_openbsd_386.go │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ ├── zsysctl_openbsd_mips64.go │ │ │ ├── zsysctl_openbsd_ppc64.go │ │ │ ├── zsysctl_openbsd_riscv64.go │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ ├── zsysnum_freebsd_386.go │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ ├── zsysnum_freebsd_riscv64.go │ │ │ ├── zsysnum_linux_386.go │ │ │ ├── zsysnum_linux_amd64.go │ │ │ ├── zsysnum_linux_arm.go │ │ │ ├── zsysnum_linux_arm64.go │ │ │ ├── zsysnum_linux_loong64.go │ │ │ ├── zsysnum_linux_mips.go │ │ │ ├── zsysnum_linux_mips64.go │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ ├── zsysnum_linux_ppc.go │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ ├── zsysnum_linux_s390x.go │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ ├── zsysnum_netbsd_386.go │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ ├── zsysnum_openbsd_386.go │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ ├── zsysnum_openbsd_mips64.go │ │ │ ├── zsysnum_openbsd_ppc64.go │ │ │ ├── zsysnum_openbsd_riscv64.go │ │ │ ├── zsysnum_zos_s390x.go │ │ │ ├── ztypes_aix_ppc.go │ │ │ ├── ztypes_aix_ppc64.go │ │ │ ├── ztypes_darwin_amd64.go │ │ │ ├── ztypes_darwin_arm64.go │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ ├── ztypes_freebsd_386.go │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ ├── ztypes_freebsd_arm.go │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ ├── ztypes_freebsd_riscv64.go │ │ │ ├── ztypes_linux.go │ │ │ ├── ztypes_linux_386.go │ │ │ ├── ztypes_linux_amd64.go │ │ │ ├── ztypes_linux_arm.go │ │ │ ├── ztypes_linux_arm64.go │ │ │ ├── ztypes_linux_loong64.go │ │ │ ├── ztypes_linux_mips.go │ │ │ ├── ztypes_linux_mips64.go │ │ │ ├── ztypes_linux_mips64le.go │ │ │ ├── ztypes_linux_mipsle.go │ │ │ ├── ztypes_linux_ppc.go │ │ │ ├── ztypes_linux_ppc64.go │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ ├── ztypes_linux_riscv64.go │ │ │ ├── ztypes_linux_s390x.go │ │ │ ├── ztypes_linux_sparc64.go │ │ │ ├── ztypes_netbsd_386.go │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ ├── ztypes_netbsd_arm.go │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ ├── ztypes_openbsd_386.go │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ ├── ztypes_openbsd_arm.go │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ ├── ztypes_openbsd_mips64.go │ │ │ ├── ztypes_openbsd_ppc64.go │ │ │ ├── ztypes_openbsd_riscv64.go │ │ │ ├── ztypes_solaris_amd64.go │ │ │ └── ztypes_zos_s390x.go │ │ └── windows │ │ │ ├── aliases.go │ │ │ ├── dll_windows.go │ │ │ ├── empty.s │ │ │ ├── env_windows.go │ │ │ ├── eventlog.go │ │ │ ├── exec_windows.go │ │ │ ├── memory_windows.go │ │ │ ├── mkerrors.bash │ │ │ ├── mkknownfolderids.bash │ │ │ ├── mksyscall.go │ │ │ ├── race.go │ │ │ ├── race0.go │ │ │ ├── security_windows.go │ │ │ ├── service.go │ │ │ ├── setupapi_windows.go │ │ │ ├── str.go │ │ │ ├── syscall.go │ │ │ ├── syscall_windows.go │ │ │ ├── types_windows.go │ │ │ ├── types_windows_386.go │ │ │ ├── types_windows_amd64.go │ │ │ ├── types_windows_arm.go │ │ │ ├── types_windows_arm64.go │ │ │ ├── zerrors_windows.go │ │ │ ├── zknownfolderids_windows.go │ │ │ └── zsyscall_windows.go │ │ ├── text │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── encoding │ │ │ ├── charmap │ │ │ │ ├── charmap.go │ │ │ │ └── tables.go │ │ │ ├── encoding.go │ │ │ ├── htmlindex │ │ │ │ ├── htmlindex.go │ │ │ │ ├── map.go │ │ │ │ └── tables.go │ │ │ ├── internal │ │ │ │ ├── identifier │ │ │ │ │ ├── identifier.go │ │ │ │ │ └── mib.go │ │ │ │ └── internal.go │ │ │ ├── japanese │ │ │ │ ├── all.go │ │ │ │ ├── eucjp.go │ │ │ │ ├── iso2022jp.go │ │ │ │ ├── shiftjis.go │ │ │ │ └── tables.go │ │ │ ├── korean │ │ │ │ ├── euckr.go │ │ │ │ └── tables.go │ │ │ ├── simplifiedchinese │ │ │ │ ├── all.go │ │ │ │ ├── gbk.go │ │ │ │ ├── hzgb2312.go │ │ │ │ └── tables.go │ │ │ ├── traditionalchinese │ │ │ │ ├── big5.go │ │ │ │ └── tables.go │ │ │ └── unicode │ │ │ │ ├── override.go │ │ │ │ └── unicode.go │ │ ├── feature │ │ │ └── plural │ │ │ │ ├── common.go │ │ │ │ ├── message.go │ │ │ │ ├── plural.go │ │ │ │ └── tables.go │ │ ├── internal │ │ │ ├── catmsg │ │ │ │ ├── catmsg.go │ │ │ │ ├── codec.go │ │ │ │ └── varint.go │ │ │ ├── format │ │ │ │ ├── format.go │ │ │ │ └── parser.go │ │ │ ├── internal.go │ │ │ ├── language │ │ │ │ ├── common.go │ │ │ │ ├── compact.go │ │ │ │ ├── compact │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── parents.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── compose.go │ │ │ │ ├── coverage.go │ │ │ │ ├── language.go │ │ │ │ ├── lookup.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ ├── match.go │ │ │ ├── number │ │ │ │ ├── common.go │ │ │ │ ├── decimal.go │ │ │ │ ├── format.go │ │ │ │ ├── number.go │ │ │ │ ├── pattern.go │ │ │ │ ├── roundingmode_string.go │ │ │ │ └── tables.go │ │ │ ├── stringset │ │ │ │ └── set.go │ │ │ ├── tag │ │ │ │ └── tag.go │ │ │ └── utf8internal │ │ │ │ └── utf8internal.go │ │ ├── language │ │ │ ├── coverage.go │ │ │ ├── doc.go │ │ │ ├── language.go │ │ │ ├── match.go │ │ │ ├── parse.go │ │ │ ├── tables.go │ │ │ └── tags.go │ │ ├── message │ │ │ ├── catalog.go │ │ │ ├── catalog │ │ │ │ ├── catalog.go │ │ │ │ ├── dict.go │ │ │ │ ├── go19.go │ │ │ │ └── gopre19.go │ │ │ ├── doc.go │ │ │ ├── format.go │ │ │ ├── message.go │ │ │ └── print.go │ │ ├── runes │ │ │ ├── cond.go │ │ │ └── runes.go │ │ └── transform │ │ │ └── transform.go │ │ └── tools │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── go │ │ ├── ast │ │ │ └── astutil │ │ │ │ ├── enclosing.go │ │ │ │ ├── imports.go │ │ │ │ ├── rewrite.go │ │ │ │ └── util.go │ │ ├── buildutil │ │ │ ├── allpackages.go │ │ │ ├── fakecontext.go │ │ │ ├── overlay.go │ │ │ ├── tags.go │ │ │ └── util.go │ │ ├── internal │ │ │ └── cgo │ │ │ │ ├── cgo.go │ │ │ │ └── cgo_pkgconfig.go │ │ └── loader │ │ │ ├── doc.go │ │ │ ├── loader.go │ │ │ └── util.go │ │ ├── imports │ │ └── forward.go │ │ └── internal │ │ ├── event │ │ ├── core │ │ │ ├── event.go │ │ │ ├── export.go │ │ │ └── fast.go │ │ ├── doc.go │ │ ├── event.go │ │ ├── keys │ │ │ ├── keys.go │ │ │ └── standard.go │ │ └── label │ │ │ └── label.go │ │ ├── fastwalk │ │ ├── fastwalk.go │ │ ├── fastwalk_darwin.go │ │ ├── fastwalk_dirent_fileno.go │ │ ├── fastwalk_dirent_ino.go │ │ ├── fastwalk_dirent_namlen_bsd.go │ │ ├── fastwalk_dirent_namlen_linux.go │ │ ├── fastwalk_portable.go │ │ └── fastwalk_unix.go │ │ ├── gocommand │ │ ├── invoke.go │ │ ├── vendor.go │ │ └── version.go │ │ ├── gopathwalk │ │ └── walk.go │ │ ├── imports │ │ ├── fix.go │ │ ├── imports.go │ │ ├── mod.go │ │ ├── mod_cache.go │ │ ├── sortimports.go │ │ └── zstdlib.go │ │ └── typeparams │ │ ├── common.go │ │ ├── coretype.go │ │ ├── enabled_go117.go │ │ ├── enabled_go118.go │ │ ├── normalize.go │ │ ├── termlist.go │ │ ├── typeparams_go117.go │ │ ├── typeparams_go118.go │ │ └── typeterm.go ├── gopkg.in │ ├── fsnotify.v1 │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fen.go │ │ ├── fsnotify.go │ │ ├── inotify.go │ │ ├── inotify_poller.go │ │ ├── kqueue.go │ │ ├── open_mode_bsd.go │ │ ├── open_mode_darwin.go │ │ └── windows.go │ ├── tomb.v1 │ │ ├── LICENSE │ │ ├── README.md │ │ └── tomb.go │ ├── yaml.v2 │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── LICENSE.libyaml │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go │ └── yaml.v3 │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── apic.go │ │ ├── decode.go │ │ ├── emitterc.go │ │ ├── encode.go │ │ ├── parserc.go │ │ ├── readerc.go │ │ ├── resolve.go │ │ ├── scannerc.go │ │ ├── sorter.go │ │ ├── writerc.go │ │ ├── yaml.go │ │ ├── yamlh.go │ │ └── yamlprivateh.go └── modules.txt ├── version └── build_info.go └── workspace ├── detective_test.go ├── insights.go ├── intel_dev.go ├── intel_release.go ├── relayed_bounce_test.go ├── workspace.go └── workspace_test.go /.adr-dir: -------------------------------------------------------------------------------- 1 | docs/decisions 2 | -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/issue_templates/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.gitlab/issue_templates/bug_report.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/epic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.gitlab/issue_templates/epic.md -------------------------------------------------------------------------------- /.gitlab/issue_templates/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.gitlab/issue_templates/feature_request.md -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /BILLOFMATERIALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/BILLOFMATERIALS.md -------------------------------------------------------------------------------- /CLA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/CLA -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/LICENSES/AGPL-3.0-only.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/RELEASING.md -------------------------------------------------------------------------------- /TRANSLATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/TRANSLATION.md -------------------------------------------------------------------------------- /VERSION.txt: -------------------------------------------------------------------------------- 1 | 2.0.0-RC9 2 | -------------------------------------------------------------------------------- /acceptance_tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/.gitignore -------------------------------------------------------------------------------- /acceptance_tests/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/.vscode/extensions.json -------------------------------------------------------------------------------- /acceptance_tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/README.md -------------------------------------------------------------------------------- /acceptance_tests/env/default/js.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/env/default/js.properties -------------------------------------------------------------------------------- /acceptance_tests/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/manifest.json -------------------------------------------------------------------------------- /acceptance_tests/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/package-lock.json -------------------------------------------------------------------------------- /acceptance_tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/package.json -------------------------------------------------------------------------------- /acceptance_tests/specs/1_2_walkthrough.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/specs/1_2_walkthrough.spec -------------------------------------------------------------------------------- /acceptance_tests/specs/2_logout.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/specs/2_logout.spec -------------------------------------------------------------------------------- /acceptance_tests/specs/3_login.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/specs/3_login.spec -------------------------------------------------------------------------------- /acceptance_tests/specs/4_datepicker.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/specs/4_datepicker.spec -------------------------------------------------------------------------------- /acceptance_tests/specs/5_user_welcome.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/acceptance_tests/specs/5_user_welcome.spec -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/api.go -------------------------------------------------------------------------------- /api/connectionstats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/connectionstats.go -------------------------------------------------------------------------------- /api/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/dashboard.go -------------------------------------------------------------------------------- /api/dashboard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/dashboard_test.go -------------------------------------------------------------------------------- /api/detective.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/detective.go -------------------------------------------------------------------------------- /api/detective_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/detective_auth_test.go -------------------------------------------------------------------------------- /api/detective_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/detective_test.go -------------------------------------------------------------------------------- /api/docs/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/docs/placeholder.go -------------------------------------------------------------------------------- /api/docs/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/docs/tools.go -------------------------------------------------------------------------------- /api/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/gen.go -------------------------------------------------------------------------------- /api/insights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/insights.go -------------------------------------------------------------------------------- /api/insights_import_progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/insights_import_progress.go -------------------------------------------------------------------------------- /api/insights_import_progress_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/insights_import_progress_test.go -------------------------------------------------------------------------------- /api/insights_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/insights_test.go -------------------------------------------------------------------------------- /api/rawlogs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/rawlogs.go -------------------------------------------------------------------------------- /api/rawlogs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/rawlogs_test.go -------------------------------------------------------------------------------- /api/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/reports.go -------------------------------------------------------------------------------- /api/status_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/status_message.go -------------------------------------------------------------------------------- /api/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/api/tools.go -------------------------------------------------------------------------------- /app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/app_test.go -------------------------------------------------------------------------------- /assets_gen/assets_generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/assets_gen/assets_generate.go -------------------------------------------------------------------------------- /auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/auth/auth.go -------------------------------------------------------------------------------- /auth/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/auth/auth_test.go -------------------------------------------------------------------------------- /auth/validations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/auth/validations.go -------------------------------------------------------------------------------- /ci/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/ci/Dockerfile -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/publish_docker_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/ci/publish_docker_image.sh -------------------------------------------------------------------------------- /ci/release_on_gitlab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/ci/release_on_gitlab.sh -------------------------------------------------------------------------------- /clean_files_go_js_vue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/clean_files_go_js_vue.py -------------------------------------------------------------------------------- /cli_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/cli_usage.md -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/config/config.go -------------------------------------------------------------------------------- /config/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/config/config_test.go -------------------------------------------------------------------------------- /connectionstats/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/connectionstats/access.go -------------------------------------------------------------------------------- /connectionstats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/connectionstats/stats.go -------------------------------------------------------------------------------- /connectionstats/stats_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/connectionstats/stats_test.go -------------------------------------------------------------------------------- /dashboard/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dashboard/dashboard.go -------------------------------------------------------------------------------- /dashboard/dashboard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dashboard/dashboard_test.go -------------------------------------------------------------------------------- /dashboard/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dashboard/mock.go -------------------------------------------------------------------------------- /dashboard/mock/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dashboard/mock/placeholder.go -------------------------------------------------------------------------------- /dashboard/queries_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dashboard/queries_test.go -------------------------------------------------------------------------------- /dashboard/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dashboard/tools.go -------------------------------------------------------------------------------- /deliverydb/cleaning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/cleaning.go -------------------------------------------------------------------------------- /deliverydb/delivery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/delivery.go -------------------------------------------------------------------------------- /deliverydb/delivery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/delivery_test.go -------------------------------------------------------------------------------- /deliverydb/migrations/3_delivery_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/migrations/3_delivery_tables.go -------------------------------------------------------------------------------- /deliverydb/migrations/4_add_queue_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/migrations/4_add_queue_info.go -------------------------------------------------------------------------------- /deliverydb/migrations/7_log_line_ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/migrations/7_log_line_ref.go -------------------------------------------------------------------------------- /deliverydb/migrations/8_msgid_replies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/migrations/8_msgid_replies.go -------------------------------------------------------------------------------- /deliverydb/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/queue.go -------------------------------------------------------------------------------- /deliverydb/recover_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/recover_dev.go -------------------------------------------------------------------------------- /deliverydb/recover_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/recover_release.go -------------------------------------------------------------------------------- /deliverydb/update_delivery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/deliverydb/update_delivery.go -------------------------------------------------------------------------------- /detective/detective.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/detective.go -------------------------------------------------------------------------------- /detective/detective_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/detective_test.go -------------------------------------------------------------------------------- /detective/escalator/escalator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/escalator/escalator.go -------------------------------------------------------------------------------- /detective/escalator/escalator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/escalator/escalator_test.go -------------------------------------------------------------------------------- /detective/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/mock.go -------------------------------------------------------------------------------- /detective/mock/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/mock/placeholder.go -------------------------------------------------------------------------------- /detective/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/detective/tools.go -------------------------------------------------------------------------------- /docs/DEVELOPMENT_FLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/DEVELOPMENT_FLOW.md -------------------------------------------------------------------------------- /docs/assets/add_permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/add_permission.png -------------------------------------------------------------------------------- /docs/assets/add_permission.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/add_permission.png.license -------------------------------------------------------------------------------- /docs/assets/add_token_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/add_token_control.png -------------------------------------------------------------------------------- /docs/assets/add_token_control.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/add_token_control.png.license -------------------------------------------------------------------------------- /docs/assets/app_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/app_config.png -------------------------------------------------------------------------------- /docs/assets/app_config.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/app_config.png.license -------------------------------------------------------------------------------- /docs/assets/create_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/create_app.png -------------------------------------------------------------------------------- /docs/assets/create_app.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/create_app.png.license -------------------------------------------------------------------------------- /docs/assets/create_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/create_token.png -------------------------------------------------------------------------------- /docs/assets/create_token.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/create_token.png.license -------------------------------------------------------------------------------- /docs/assets/invite_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/invite_bot.png -------------------------------------------------------------------------------- /docs/assets/invite_bot.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/invite_bot.png.license -------------------------------------------------------------------------------- /docs/assets/ngi-pointer-eu-flag-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/ngi-pointer-eu-flag-300.png -------------------------------------------------------------------------------- /docs/assets/ngi-zero-eu-flag-300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/ngi-zero-eu-flag-300.png -------------------------------------------------------------------------------- /docs/assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/assets/screenshot.png -------------------------------------------------------------------------------- /docs/components.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/components.dot -------------------------------------------------------------------------------- /docs/components.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/components.svg -------------------------------------------------------------------------------- /docs/decisions/0002-branching-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/decisions/0002-branching-model.md -------------------------------------------------------------------------------- /docs/decisions/0004-sqlite-as-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/decisions/0004-sqlite-as-storage.md -------------------------------------------------------------------------------- /docs/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/placeholder.go -------------------------------------------------------------------------------- /docs/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/docs/tools.go -------------------------------------------------------------------------------- /domainmapping/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/domainmapping/gen.go -------------------------------------------------------------------------------- /domainmapping/gen_list/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/domainmapping/gen_list/gen.go -------------------------------------------------------------------------------- /domainmapping/mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/domainmapping/mapping.go -------------------------------------------------------------------------------- /domainmapping/mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/domainmapping/mapping.json -------------------------------------------------------------------------------- /domainmapping/mapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/domainmapping/mapping_test.go -------------------------------------------------------------------------------- /dovecotconf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/dovecotconf.go -------------------------------------------------------------------------------- /examples/deliverydb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/examples/deliverydb/main.go -------------------------------------------------------------------------------- /examples/mailtracking/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/examples/mailtracking/main.go -------------------------------------------------------------------------------- /examples/mailtracking/to_json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/examples/mailtracking/to_json.sh -------------------------------------------------------------------------------- /examples/postfix-dir-watcher/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/examples/postfix-dir-watcher/main.go -------------------------------------------------------------------------------- /examples/workspace-simple/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/examples/workspace-simple/main.go -------------------------------------------------------------------------------- /featureflags/feature_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/featureflags/feature_test.go -------------------------------------------------------------------------------- /featureflags/featureflags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/featureflags/featureflags.go -------------------------------------------------------------------------------- /frontend/controlcenter/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /frontend/controlcenter/.env.development: -------------------------------------------------------------------------------- 1 | VUE_APP_CONTROLCENTER_BACKEND_BASE_URL=http://localhost:8003/ 2 | -------------------------------------------------------------------------------- /frontend/controlcenter/.env.production: -------------------------------------------------------------------------------- 1 | VUE_APP_CONTROLCENTER_BACKEND_BASE_URL="" -------------------------------------------------------------------------------- /frontend/controlcenter/.eslintignore: -------------------------------------------------------------------------------- 1 | src/3rd -------------------------------------------------------------------------------- /frontend/controlcenter/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/.eslintrc.js -------------------------------------------------------------------------------- /frontend/controlcenter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/.gitignore -------------------------------------------------------------------------------- /frontend/controlcenter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/README.md -------------------------------------------------------------------------------- /frontend/controlcenter/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/babel.config.js -------------------------------------------------------------------------------- /frontend/controlcenter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/package-lock.json -------------------------------------------------------------------------------- /frontend/controlcenter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/package.json -------------------------------------------------------------------------------- /frontend/controlcenter/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/public/favicon.svg -------------------------------------------------------------------------------- /frontend/controlcenter/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/public/index.html -------------------------------------------------------------------------------- /frontend/controlcenter/root_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/root_build.sh -------------------------------------------------------------------------------- /frontend/controlcenter/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/App.vue -------------------------------------------------------------------------------- /frontend/controlcenter/src/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/lib/api.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/lib/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/lib/date.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/lib/util.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/main.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/mixin/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/mixin/auth.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/router/index.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/store/index.js -------------------------------------------------------------------------------- /frontend/controlcenter/src/views/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/views/index.vue -------------------------------------------------------------------------------- /frontend/controlcenter/src/views/login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/src/views/login.vue -------------------------------------------------------------------------------- /frontend/controlcenter/vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/frontend/controlcenter/vue.config.js -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/go.sum -------------------------------------------------------------------------------- /httpauth/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpauth/auth/auth.go -------------------------------------------------------------------------------- /httpauth/auth/fake_registrar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpauth/auth/fake_registrar.go -------------------------------------------------------------------------------- /httpauth/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpauth/handler.go -------------------------------------------------------------------------------- /httpauth/handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpauth/handler_test.go -------------------------------------------------------------------------------- /httpmiddleware/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/auth.go -------------------------------------------------------------------------------- /httpmiddleware/auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/auth_test.go -------------------------------------------------------------------------------- /httpmiddleware/chain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/chain.go -------------------------------------------------------------------------------- /httpmiddleware/rate_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/rate_limit.go -------------------------------------------------------------------------------- /httpmiddleware/rate_limit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/rate_limit_test.go -------------------------------------------------------------------------------- /httpmiddleware/request_with_interval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/request_with_interval.go -------------------------------------------------------------------------------- /httpmiddleware/timeout_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/timeout_test.go -------------------------------------------------------------------------------- /httpmiddleware/withtimeout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpmiddleware/withtimeout.go -------------------------------------------------------------------------------- /httpsettings/regression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpsettings/regression_test.go -------------------------------------------------------------------------------- /httpsettings/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpsettings/settings.go -------------------------------------------------------------------------------- /httpsettings/settings_page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpsettings/settings_page_test.go -------------------------------------------------------------------------------- /httpsettings/settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/httpsettings/settings_test.go -------------------------------------------------------------------------------- /i18n/i18n_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/i18n/i18n_test.go -------------------------------------------------------------------------------- /i18n/translator/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/i18n/translator/default.go -------------------------------------------------------------------------------- /i18n/translator/translator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/i18n/translator/translator_test.go -------------------------------------------------------------------------------- /i18n/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/i18n/wrapper.go -------------------------------------------------------------------------------- /insights/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/actions.go -------------------------------------------------------------------------------- /insights/actions_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/actions_dev.go -------------------------------------------------------------------------------- /insights/actions_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/actions_release.go -------------------------------------------------------------------------------- /insights/blockedips/blockedips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/blockedips/blockedips.go -------------------------------------------------------------------------------- /insights/blockedips/blockedips_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/blockedips/blockedips_dev.go -------------------------------------------------------------------------------- /insights/blockedips/blockedips_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/blockedips/blockedips_test.go -------------------------------------------------------------------------------- /insights/blockedips/testutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/blockedips/testutils.go -------------------------------------------------------------------------------- /insights/core/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/access.go -------------------------------------------------------------------------------- /insights/core/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/converter.go -------------------------------------------------------------------------------- /insights/core/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/converter_test.go -------------------------------------------------------------------------------- /insights/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/core.go -------------------------------------------------------------------------------- /insights/core/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/helpers.go -------------------------------------------------------------------------------- /insights/core/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/mock.go -------------------------------------------------------------------------------- /insights/core/mock/placeholder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/mock/placeholder.go -------------------------------------------------------------------------------- /insights/core/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/options.go -------------------------------------------------------------------------------- /insights/core/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/progress.go -------------------------------------------------------------------------------- /insights/core/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/core/tools.go -------------------------------------------------------------------------------- /insights/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/default.go -------------------------------------------------------------------------------- /insights/detectiveescalation/escalation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/detectiveescalation/escalation.go -------------------------------------------------------------------------------- /insights/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/engine.go -------------------------------------------------------------------------------- /insights/fetcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/fetcher.go -------------------------------------------------------------------------------- /insights/importsummary/importsummary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/importsummary/importsummary.go -------------------------------------------------------------------------------- /insights/importsummary/importsummary_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/importsummary/importsummary_dev.go -------------------------------------------------------------------------------- /insights/insights_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/insights_test.go -------------------------------------------------------------------------------- /insights/localrbl/localrbl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/localrbl/localrbl_test.go -------------------------------------------------------------------------------- /insights/localrbl/rbl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/localrbl/rbl.go -------------------------------------------------------------------------------- /insights/localrbl/rbl_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/localrbl/rbl_dev.go -------------------------------------------------------------------------------- /insights/messagerbl/rbl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/messagerbl/rbl.go -------------------------------------------------------------------------------- /insights/messagerbl/rbl_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/messagerbl/rbl_dev.go -------------------------------------------------------------------------------- /insights/messagerbl/rbl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/messagerbl/rbl_test.go -------------------------------------------------------------------------------- /insights/migrations/1_insights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/migrations/1_insights.go -------------------------------------------------------------------------------- /insights/migrations/2_fix_fields_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/migrations/2_fix_fields_names.go -------------------------------------------------------------------------------- /insights/migrations/4_historical_import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/migrations/4_historical_import.go -------------------------------------------------------------------------------- /insights/migrations/7_index_archived.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/migrations/7_index_archived.go -------------------------------------------------------------------------------- /insights/migrations/insights_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/migrations/insights_test.go -------------------------------------------------------------------------------- /insights/newsfeed/newsfeed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/newsfeed/newsfeed.go -------------------------------------------------------------------------------- /insights/newsfeed/newsfeed_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/newsfeed/newsfeed_dev.go -------------------------------------------------------------------------------- /insights/newsfeed/newsfeed_insight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/newsfeed/newsfeed_insight_test.go -------------------------------------------------------------------------------- /insights/notification_policies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/notification_policies.go -------------------------------------------------------------------------------- /insights/notification_policies_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/notification_policies_test.go -------------------------------------------------------------------------------- /insights/testutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/testutil/util.go -------------------------------------------------------------------------------- /insights/welcome/welcome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/welcome/welcome.go -------------------------------------------------------------------------------- /insights/welcome/welcome_insight_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/insights/welcome/welcome_insight_test.go -------------------------------------------------------------------------------- /intel/blockedips/blockedips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/blockedips/blockedips.go -------------------------------------------------------------------------------- /intel/collector/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/collector/access.go -------------------------------------------------------------------------------- /intel/collector/collector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/collector/collector.go -------------------------------------------------------------------------------- /intel/collector/collector_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/collector/collector_test.go -------------------------------------------------------------------------------- /intel/collector/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/collector/dispatcher.go -------------------------------------------------------------------------------- /intel/collector/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/collector/reporter.go -------------------------------------------------------------------------------- /intel/connectionstats/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/connectionstats/reporter.go -------------------------------------------------------------------------------- /intel/connectionstats/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/connectionstats/reporter_test.go -------------------------------------------------------------------------------- /intel/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/core/core.go -------------------------------------------------------------------------------- /intel/example/send_report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/example/send_report.go -------------------------------------------------------------------------------- /intel/insights/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/insights/reporter.go -------------------------------------------------------------------------------- /intel/insights/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/insights/reporter_test.go -------------------------------------------------------------------------------- /intel/intel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/intel.go -------------------------------------------------------------------------------- /intel/intel_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/intel_test.go -------------------------------------------------------------------------------- /intel/logslinecount/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/logslinecount/publisher.go -------------------------------------------------------------------------------- /intel/logslinecount/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/logslinecount/reporter.go -------------------------------------------------------------------------------- /intel/logslinecount/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/logslinecount/reporter_test.go -------------------------------------------------------------------------------- /intel/mailactivity/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/mailactivity/reporter.go -------------------------------------------------------------------------------- /intel/mailactivity/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/mailactivity/reporter_test.go -------------------------------------------------------------------------------- /intel/migrations/1_basic_intel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/migrations/1_basic_intel.go -------------------------------------------------------------------------------- /intel/migrations/7_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/migrations/7_events.go -------------------------------------------------------------------------------- /intel/migrations/8_remove_invalid_events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/migrations/8_remove_invalid_events.go -------------------------------------------------------------------------------- /intel/receptor/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/receptor/mock.go -------------------------------------------------------------------------------- /intel/receptor/receptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/receptor/receptor.go -------------------------------------------------------------------------------- /intel/receptor/receptor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/receptor/receptor_test.go -------------------------------------------------------------------------------- /intel/receptor/requester.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/receptor/requester.go -------------------------------------------------------------------------------- /intel/topdomains/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/topdomains/reporter.go -------------------------------------------------------------------------------- /intel/topdomains/reporter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/intel/topdomains/reporter_test.go -------------------------------------------------------------------------------- /lmsqlite3/dbconn/conncounters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/dbconn/conncounters.go -------------------------------------------------------------------------------- /lmsqlite3/dbconn/dbconn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/dbconn/dbconn_test.go -------------------------------------------------------------------------------- /lmsqlite3/dbconn/prepared_stmts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/dbconn/prepared_stmts.go -------------------------------------------------------------------------------- /lmsqlite3/dbconn/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/dbconn/utils.go -------------------------------------------------------------------------------- /lmsqlite3/lmsqlite3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/lmsqlite3.go -------------------------------------------------------------------------------- /lmsqlite3/lmsqlite3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/lmsqlite3_test.go -------------------------------------------------------------------------------- /lmsqlite3/migrator/migrator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/lmsqlite3/migrator/migrator.go -------------------------------------------------------------------------------- /localrbl/checker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/localrbl/checker_test.go -------------------------------------------------------------------------------- /localrbl/dnschecker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/localrbl/dnschecker.go -------------------------------------------------------------------------------- /localrbl/localrbl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/localrbl/localrbl.go -------------------------------------------------------------------------------- /localrbl/rbl_providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/localrbl/rbl_providers.go -------------------------------------------------------------------------------- /logeater/announcer/announcer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/announcer/announcer.go -------------------------------------------------------------------------------- /logeater/announcer/announcer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/announcer/announcer_test.go -------------------------------------------------------------------------------- /logeater/announcer/synchronized.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/announcer/synchronized.go -------------------------------------------------------------------------------- /logeater/dirlogsource/helper_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirlogsource/helper_extractor.go -------------------------------------------------------------------------------- /logeater/dirlogsource/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirlogsource/source.go -------------------------------------------------------------------------------- /logeater/dirlogsource/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirlogsource/source_test.go -------------------------------------------------------------------------------- /logeater/dirwatcher/bzip2_test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/bzip2_test_helpers.go -------------------------------------------------------------------------------- /logeater/dirwatcher/dir_content.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/dir_content.go -------------------------------------------------------------------------------- /logeater/dirwatcher/dir_importer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/dir_importer.go -------------------------------------------------------------------------------- /logeater/dirwatcher/dir_importer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/dir_importer_test.go -------------------------------------------------------------------------------- /logeater/dirwatcher/gzip_test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/gzip_test_helpers.go -------------------------------------------------------------------------------- /logeater/dirwatcher/misc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/misc_test.go -------------------------------------------------------------------------------- /logeater/dirwatcher/regression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/regression_test.go -------------------------------------------------------------------------------- /logeater/dirwatcher/rsync_watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/rsync_watcher.go -------------------------------------------------------------------------------- /logeater/dirwatcher/rsync_watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/rsync_watcher_test.go -------------------------------------------------------------------------------- /logeater/dirwatcher/test_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/test_utils.go -------------------------------------------------------------------------------- /logeater/dirwatcher/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/dirwatcher/utils.go -------------------------------------------------------------------------------- /logeater/filelogsource/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/filelogsource/source.go -------------------------------------------------------------------------------- /logeater/logsource/logsource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/logsource/logsource.go -------------------------------------------------------------------------------- /logeater/logsource/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/logsource/reader.go -------------------------------------------------------------------------------- /logeater/reader/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/reader/reader.go -------------------------------------------------------------------------------- /logeater/reader/reader_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/reader/reader_test.go -------------------------------------------------------------------------------- /logeater/rsyncwatcher/watcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/rsyncwatcher/watcher.go -------------------------------------------------------------------------------- /logeater/rsyncwatcher/watcher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/rsyncwatcher/watcher_test.go -------------------------------------------------------------------------------- /logeater/socketsource/source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/socketsource/source.go -------------------------------------------------------------------------------- /logeater/socketsource/source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/socketsource/source_test.go -------------------------------------------------------------------------------- /logeater/transform/logstash-json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/transform/logstash-json.go -------------------------------------------------------------------------------- /logeater/transform/prepend-rfc3339.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/transform/prepend-rfc3339.go -------------------------------------------------------------------------------- /logeater/transform/rfc3339.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/transform/rfc3339.go -------------------------------------------------------------------------------- /logeater/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/transform/transform.go -------------------------------------------------------------------------------- /logeater/transform/transform_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/logeater/transform/transform_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/main.go -------------------------------------------------------------------------------- /messagerbl/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/messagerbl/default.go -------------------------------------------------------------------------------- /messagerbl/rbl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/messagerbl/rbl.go -------------------------------------------------------------------------------- /messagerbl/rbl_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/messagerbl/rbl_test.go -------------------------------------------------------------------------------- /metadata/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/metadata/metadata.go -------------------------------------------------------------------------------- /metadata/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/metadata/metadata_test.go -------------------------------------------------------------------------------- /metadata/migrations/create_meta_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/metadata/migrations/create_meta_table.go -------------------------------------------------------------------------------- /metadata/serialwriterunner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/metadata/serialwriterunner.go -------------------------------------------------------------------------------- /metadata/serialwriterunner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/metadata/serialwriterunner_test.go -------------------------------------------------------------------------------- /newsletter/newsletter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/newsletter/newsletter.go -------------------------------------------------------------------------------- /newsletter/newsletter_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/newsletter/newsletter_dev.go -------------------------------------------------------------------------------- /newsletter/newsletter_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/newsletter/newsletter_release.go -------------------------------------------------------------------------------- /newsletter/newsletter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/newsletter/newsletter_test.go -------------------------------------------------------------------------------- /notification/core/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/core/notifier.go -------------------------------------------------------------------------------- /notification/core/policy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/core/policy.go -------------------------------------------------------------------------------- /notification/core/translate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/core/translate.go -------------------------------------------------------------------------------- /notification/email/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/.gitignore -------------------------------------------------------------------------------- /notification/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/email.go -------------------------------------------------------------------------------- /notification/email/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/email_test.go -------------------------------------------------------------------------------- /notification/email/fake_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/fake_server.go -------------------------------------------------------------------------------- /notification/email/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/templates/README.md -------------------------------------------------------------------------------- /notification/email/templates/template.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/templates/template.mjml -------------------------------------------------------------------------------- /notification/email/templates/template.thtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/email/templates/template.thtml -------------------------------------------------------------------------------- /notification/notification_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/notification_test.go -------------------------------------------------------------------------------- /notification/notifications.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/notifications.go -------------------------------------------------------------------------------- /notification/slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/notification/slack/slack.go -------------------------------------------------------------------------------- /pkg/closers/close_all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/closers/close_all.go -------------------------------------------------------------------------------- /pkg/closers/close_all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/closers/close_all_test.go -------------------------------------------------------------------------------- /pkg/ctxlogger/ctxlog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/ctxlogger/ctxlog.go -------------------------------------------------------------------------------- /pkg/dbrunner/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/dbrunner/runner.go -------------------------------------------------------------------------------- /pkg/httperror/httperror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/httperror/httperror.go -------------------------------------------------------------------------------- /pkg/postfix/checksum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/checksum.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/.gitignore -------------------------------------------------------------------------------- /pkg/postfix/logparser/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/LICENSE -------------------------------------------------------------------------------- /pkg/postfix/logparser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/README.md -------------------------------------------------------------------------------- /pkg/postfix/logparser/bounce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/bounce.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/cleanup.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/common.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/corpus/smtp_ok.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/corpus/smtp_ok.txt -------------------------------------------------------------------------------- /pkg/postfix/logparser/dovecot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/dovecot.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/errors.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/example/main.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/fuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/fuzz.sh -------------------------------------------------------------------------------- /pkg/postfix/logparser/fuzz_with_clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/fuzz_with_clang.sh -------------------------------------------------------------------------------- /pkg/postfix/logparser/fuzzing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/fuzzing.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/header.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/parser.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/parser_test.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/performance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/performance_test.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/pickup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/pickup.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/qmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/qmgr.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/bounce.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/bounce.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/bounce.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/bounce.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/cleanup.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/cleanup.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/cleanup.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/common.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/common.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/dovecot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/dovecot.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/dovecot.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/dovecot.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/errors.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/header.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/header.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/parser.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/payload.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/pickup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/pickup.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/pickup.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/pickup.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/qmgr.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/qmgr.gen.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/qmgr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/qmgr.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/qmgr.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/qmgr.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/smtp.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/smtp.gen.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/smtp.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/smtp.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/smtp.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/smtpd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/smtpd.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/smtpd.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/smtpd.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/version.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/rawparser/version.rl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/rawparser/version.rl -------------------------------------------------------------------------------- /pkg/postfix/logparser/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/smtp.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/smtpd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/smtpd.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/timeutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/timeutil/util.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/timeutil/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/timeutil/util_test.go -------------------------------------------------------------------------------- /pkg/postfix/logparser/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/logparser/version.go -------------------------------------------------------------------------------- /pkg/postfix/postfix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/postfix_test.go -------------------------------------------------------------------------------- /pkg/postfix/publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/postfix/publisher.go -------------------------------------------------------------------------------- /pkg/runner/cancellable_runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/runner/cancellable_runner.go -------------------------------------------------------------------------------- /pkg/runner/cancellable_runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/runner/cancellable_runner_test.go -------------------------------------------------------------------------------- /pkg/runner/dependant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/pkg/runner/dependant.go -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | generated.go 2 | -------------------------------------------------------------------------------- /po/backend.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/backend.pot -------------------------------------------------------------------------------- /po/de/LC_MESSAGES/webui.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/de/LC_MESSAGES/webui.po -------------------------------------------------------------------------------- /po/el/LC_MESSAGES/backend.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/el/LC_MESSAGES/backend.po -------------------------------------------------------------------------------- /po/el/LC_MESSAGES/webui.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/el/LC_MESSAGES/webui.po -------------------------------------------------------------------------------- /po/en/LC_MESSAGES/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /po/en/LC_MESSAGES/backend.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/en/LC_MESSAGES/backend.po -------------------------------------------------------------------------------- /po/en/LC_MESSAGES/webui.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/en/LC_MESSAGES/webui.po -------------------------------------------------------------------------------- /po/es_US/LC_MESSAGES/backend.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/es_US/LC_MESSAGES/backend.po -------------------------------------------------------------------------------- /po/es_US/LC_MESSAGES/webui.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/es_US/LC_MESSAGES/webui.po -------------------------------------------------------------------------------- /po/po.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/po.go -------------------------------------------------------------------------------- /po/pt_BR/LC_MESSAGES/backend.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/pt_BR/LC_MESSAGES/backend.po -------------------------------------------------------------------------------- /po/pt_BR/LC_MESSAGES/webui.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/pt_BR/LC_MESSAGES/webui.po -------------------------------------------------------------------------------- /po/sq/LC_MESSAGES/backend.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/sq/LC_MESSAGES/backend.po -------------------------------------------------------------------------------- /po/sq/LC_MESSAGES/webui.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/sq/LC_MESSAGES/webui.po -------------------------------------------------------------------------------- /po/webui.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/po/webui.pot -------------------------------------------------------------------------------- /postfixversion/postfixversion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/postfixversion/postfixversion.go -------------------------------------------------------------------------------- /postfixversion/postfixversion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/postfixversion/postfixversion_test.go -------------------------------------------------------------------------------- /rawlogsdb/accessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/rawlogsdb/accessor.go -------------------------------------------------------------------------------- /rawlogsdb/migrations/1_create_logs_table.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/rawlogsdb/migrations/1_create_logs_table.go -------------------------------------------------------------------------------- /rawlogsdb/rawlogs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/rawlogsdb/rawlogs.go -------------------------------------------------------------------------------- /rawlogsdb/rawlogs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/rawlogsdb/rawlogs_test.go -------------------------------------------------------------------------------- /recommendation/cmd/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/cmd/gen.go -------------------------------------------------------------------------------- /recommendation/gen_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/gen_dev.go -------------------------------------------------------------------------------- /recommendation/gen_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/gen_release.go -------------------------------------------------------------------------------- /recommendation/instance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/instance.go -------------------------------------------------------------------------------- /recommendation/links_mapping_dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/links_mapping_dev.json -------------------------------------------------------------------------------- /recommendation/links_mapping_release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/links_mapping_release.json -------------------------------------------------------------------------------- /recommendation/url_container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/url_container.go -------------------------------------------------------------------------------- /recommendation/url_container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/recommendation/url_container_test.go -------------------------------------------------------------------------------- /release_notes/0.0.0: -------------------------------------------------------------------------------- 1 | ControlCenter 0.0.0 (WIP) 2 | 3 | NO-OP Release, just for tests 4 | -------------------------------------------------------------------------------- /release_notes/0.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.1 -------------------------------------------------------------------------------- /release_notes/0.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.2 -------------------------------------------------------------------------------- /release_notes/0.0.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.3 -------------------------------------------------------------------------------- /release_notes/0.0.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.4 -------------------------------------------------------------------------------- /release_notes/0.0.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.5 -------------------------------------------------------------------------------- /release_notes/0.0.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.6 -------------------------------------------------------------------------------- /release_notes/0.0.6-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.6-1 -------------------------------------------------------------------------------- /release_notes/0.0.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.7 -------------------------------------------------------------------------------- /release_notes/0.0.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.8 -------------------------------------------------------------------------------- /release_notes/0.0.8-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.8-1 -------------------------------------------------------------------------------- /release_notes/0.0.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/0.0.9 -------------------------------------------------------------------------------- /release_notes/1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.0.0 -------------------------------------------------------------------------------- /release_notes/1.0.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.0.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.0.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.0.1 -------------------------------------------------------------------------------- /release_notes/1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.1.0 -------------------------------------------------------------------------------- /release_notes/1.1.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.1.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.2.0 -------------------------------------------------------------------------------- /release_notes/1.2.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.2.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.2.0-RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.2.0-RC2 -------------------------------------------------------------------------------- /release_notes/1.2.0-RC3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.2.0-RC3 -------------------------------------------------------------------------------- /release_notes/1.3.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.3.0 -------------------------------------------------------------------------------- /release_notes/1.3.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.3.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.3.0-RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.3.0-RC2 -------------------------------------------------------------------------------- /release_notes/1.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.4.0 -------------------------------------------------------------------------------- /release_notes/1.4.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.4.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.5.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.5.0 -------------------------------------------------------------------------------- /release_notes/1.5.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.5.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.5.1 -------------------------------------------------------------------------------- /release_notes/1.6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.6.0 -------------------------------------------------------------------------------- /release_notes/1.6.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.6.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.6.0-RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.6.0-RC2 -------------------------------------------------------------------------------- /release_notes/1.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.6.1 -------------------------------------------------------------------------------- /release_notes/1.7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.0 -------------------------------------------------------------------------------- /release_notes/1.7.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.0-RC1 -------------------------------------------------------------------------------- /release_notes/1.7.0-RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.0-RC2 -------------------------------------------------------------------------------- /release_notes/1.7.0-RC3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.0-RC3 -------------------------------------------------------------------------------- /release_notes/1.7.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.1 -------------------------------------------------------------------------------- /release_notes/1.7.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.2 -------------------------------------------------------------------------------- /release_notes/1.7.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.7.3 -------------------------------------------------------------------------------- /release_notes/1.8.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.8.0 -------------------------------------------------------------------------------- /release_notes/1.8.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.8.1 -------------------------------------------------------------------------------- /release_notes/1.8.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.8.2 -------------------------------------------------------------------------------- /release_notes/1.9.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.9.0 -------------------------------------------------------------------------------- /release_notes/1.9.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/1.9.1 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC1 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC2 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC3 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC4 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC5 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC6 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC7 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC8 -------------------------------------------------------------------------------- /release_notes/2.0.0-RC9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/release_notes/2.0.0-RC9 -------------------------------------------------------------------------------- /security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/security.txt -------------------------------------------------------------------------------- /security.txt.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/security.txt.license -------------------------------------------------------------------------------- /server/api_explorer_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/api_explorer_dev.go -------------------------------------------------------------------------------- /server/api_explorer_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/api_explorer_release.go -------------------------------------------------------------------------------- /server/profiler_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/profiler_dev.go -------------------------------------------------------------------------------- /server/profiler_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/profiler_release.go -------------------------------------------------------------------------------- /server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/server.go -------------------------------------------------------------------------------- /server/server_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/server_dev.go -------------------------------------------------------------------------------- /server/server_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/server_release.go -------------------------------------------------------------------------------- /server/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/server/server_test.go -------------------------------------------------------------------------------- /settings/detective/detective.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/detective/detective.go -------------------------------------------------------------------------------- /settings/globalsettings/globalsettings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/globalsettings/globalsettings.go -------------------------------------------------------------------------------- /settings/globalsettings/settings_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/globalsettings/settings_test.go -------------------------------------------------------------------------------- /settings/insights/insights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/insights/insights.go -------------------------------------------------------------------------------- /settings/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/setup.go -------------------------------------------------------------------------------- /settings/setup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/setup_test.go -------------------------------------------------------------------------------- /settings/walkthrough/walkthrough.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/settings/walkthrough/walkthrough.go -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /staticdata/staticdata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/staticdata/staticdata.go -------------------------------------------------------------------------------- /staticdata/staticdata_stub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/staticdata/staticdata_stub.go -------------------------------------------------------------------------------- /staticdata/staticdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/staticdata/staticdata_test.go -------------------------------------------------------------------------------- /staticdata/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/staticdata/tools.go -------------------------------------------------------------------------------- /subcommand/userchanges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/subcommand/userchanges.go -------------------------------------------------------------------------------- /subcommand/userchanges_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/subcommand/userchanges_test.go -------------------------------------------------------------------------------- /test_files/postfix_logs/complete.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/test_files/postfix_logs/complete.tar.gz -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools.go -------------------------------------------------------------------------------- /tools/batch_log_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/batch_log_cleaner.py -------------------------------------------------------------------------------- /tools/cc_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/cc_cli.py -------------------------------------------------------------------------------- /tools/cmdline_usage/.gitignore: -------------------------------------------------------------------------------- 1 | lightmeter 2 | -------------------------------------------------------------------------------- /tools/cmdline_usage/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/cmdline_usage/cli.go -------------------------------------------------------------------------------- /tools/gen_deps_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/gen_deps_graph.py -------------------------------------------------------------------------------- /tools/go2po/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/go2po/main.go -------------------------------------------------------------------------------- /tools/go_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/go_test.sh -------------------------------------------------------------------------------- /tools/gotestdata/invalid/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/gotestdata/invalid/main.go -------------------------------------------------------------------------------- /tools/gotestdata/translator/translator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/gotestdata/translator/translator.go -------------------------------------------------------------------------------- /tools/gotestdata/valid/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/gotestdata/valid/main.go -------------------------------------------------------------------------------- /tools/log_cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/log_cleaner.py -------------------------------------------------------------------------------- /tools/mock_logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/mock_logs.sh -------------------------------------------------------------------------------- /tools/po2go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/po2go/main.go -------------------------------------------------------------------------------- /tools/poutil/poutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/poutil/poutil.go -------------------------------------------------------------------------------- /tools/update_cli_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tools/update_cli_docs.sh -------------------------------------------------------------------------------- /tracking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/README.md -------------------------------------------------------------------------------- /tracking/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/actions.go -------------------------------------------------------------------------------- /tracking/commits_notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/commits_notifier.go -------------------------------------------------------------------------------- /tracking/dispatching.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/dispatching.go -------------------------------------------------------------------------------- /tracking/filters.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/filters.go -------------------------------------------------------------------------------- /tracking/filters_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/filters_test.go -------------------------------------------------------------------------------- /tracking/migrations/1_tracking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/migrations/1_tracking.go -------------------------------------------------------------------------------- /tracking/migrations/3_wipe_tracking_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/migrations/3_wipe_tracking_data.go -------------------------------------------------------------------------------- /tracking/multi_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/multi_host.go -------------------------------------------------------------------------------- /tracking/node_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/node_type.go -------------------------------------------------------------------------------- /tracking/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/result.go -------------------------------------------------------------------------------- /tracking/result_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/result_keys.go -------------------------------------------------------------------------------- /tracking/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/settings.go -------------------------------------------------------------------------------- /tracking/single_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/single_host.go -------------------------------------------------------------------------------- /tracking/tracker_prepared_stmts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/tracker_prepared_stmts.go -------------------------------------------------------------------------------- /tracking/tracking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/tracking.go -------------------------------------------------------------------------------- /tracking/tracking_debug_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/tracking_debug_util.go -------------------------------------------------------------------------------- /tracking/tracking_non_debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/tracking_non_debug.go -------------------------------------------------------------------------------- /tracking/tracking_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/tracking_test.go -------------------------------------------------------------------------------- /tracking/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/tracking/utils.go -------------------------------------------------------------------------------- /util/emailutil/disposable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/emailutil/disposable.go -------------------------------------------------------------------------------- /util/emailutil/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/emailutil/email.go -------------------------------------------------------------------------------- /util/emailutil/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/emailutil/email_test.go -------------------------------------------------------------------------------- /util/envutil/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/envutil/env.go -------------------------------------------------------------------------------- /util/errorutil/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/errorutil/errors.go -------------------------------------------------------------------------------- /util/errorutil/errors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/errorutil/errors_test.go -------------------------------------------------------------------------------- /util/errorutil/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/errorutil/util.go -------------------------------------------------------------------------------- /util/errorutil/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/errorutil/util_test.go -------------------------------------------------------------------------------- /util/httputil/httputil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/httputil/httputil.go -------------------------------------------------------------------------------- /util/migrationutil/json_marshall_fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/migrationutil/json_marshall_fix.go -------------------------------------------------------------------------------- /util/migrationutil/json_marshall_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/migrationutil/json_marshall_test.go -------------------------------------------------------------------------------- /util/postfixutil/postfix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/postfixutil/postfix.go -------------------------------------------------------------------------------- /util/settingsutil/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/settingsutil/access.go -------------------------------------------------------------------------------- /util/stringutil/sensitive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/stringutil/sensitive.go -------------------------------------------------------------------------------- /util/temputil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/temputil/testutil.go -------------------------------------------------------------------------------- /util/testutil/extract_tar_gz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/testutil/extract_tar_gz.go -------------------------------------------------------------------------------- /util/testutil/tempdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/testutil/tempdb.go -------------------------------------------------------------------------------- /util/testutil/testutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/testutil/testutil.go -------------------------------------------------------------------------------- /util/timeutil/clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/timeutil/clock.go -------------------------------------------------------------------------------- /util/timeutil/mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/timeutil/mock.go -------------------------------------------------------------------------------- /util/timeutil/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/timeutil/time.go -------------------------------------------------------------------------------- /util/timeutil/time_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/timeutil/time_test.go -------------------------------------------------------------------------------- /util/timeutil/timeutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/util/timeutil/timeutil.go -------------------------------------------------------------------------------- /vendor/github.com/KyleBanks/depth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/KyleBanks/depth/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/KyleBanks/depth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/KyleBanks/depth/Makefile -------------------------------------------------------------------------------- /vendor/github.com/KyleBanks/depth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/KyleBanks/depth/README.md -------------------------------------------------------------------------------- /vendor/github.com/KyleBanks/depth/depth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/KyleBanks/depth/depth.go -------------------------------------------------------------------------------- /vendor/github.com/KyleBanks/depth/pkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/KyleBanks/depth/pkg.go -------------------------------------------------------------------------------- /vendor/github.com/PuerkitoBio/goquery/.gitattributes: -------------------------------------------------------------------------------- 1 | testdata/* linguist-vendored 2 | -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/ATTRIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dlclark/regexp2/ATTRIB -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dlclark/regexp2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dlclark/regexp2/README.md -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dlclark/regexp2/match.go -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dlclark/regexp2/regexp.go -------------------------------------------------------------------------------- /vendor/github.com/dlclark/regexp2/runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dlclark/regexp2/runner.go -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/README.md -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/api.go -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/zbench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/zbench.sh -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/zfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/zfuzz.sh -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/zprof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/zprof.sh -------------------------------------------------------------------------------- /vendor/github.com/dsnet/compress/ztest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/dsnet/compress/ztest.sh -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-sasl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-sasl/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-sasl/login.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-sasl/login.go -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-sasl/plain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-sasl/plain.go -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-sasl/sasl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-sasl/sasl.go -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-smtp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-smtp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-smtp/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-smtp/conn.go -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-smtp/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-smtp/data.go -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-smtp/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-smtp/parse.go -------------------------------------------------------------------------------- /vendor/github.com/emersion/go-smtp/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/emersion/go-smtp/smtp.go -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/.gitattributes: -------------------------------------------------------------------------------- 1 | go.sum linguist-generated 2 | -------------------------------------------------------------------------------- /vendor/github.com/fsnotify/fsnotify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/fsnotify/fsnotify/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/ghodss/yaml/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/ghodss/yaml/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/ghodss/yaml/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/ghodss/yaml/README.md -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/ghodss/yaml/fields.go -------------------------------------------------------------------------------- /vendor/github.com/ghodss/yaml/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/ghodss/yaml/yaml.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/README.md -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/cache.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/debug.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/errors.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/header.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/info.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/items.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/paths.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/schema.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/golang/mock/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/golang/mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/golang/mock/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/.gitignore: -------------------------------------------------------------------------------- 1 | .test 2 | .go 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/hpcloud/tail/Makefile -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/hpcloud/tail/README.md -------------------------------------------------------------------------------- /vendor/github.com/hpcloud/tail/tail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/hpcloud/tail/tail.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/imdario/mergo/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/imdario/mergo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/imdario/mergo/map.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/merge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/imdario/mergo/merge.go -------------------------------------------------------------------------------- /vendor/github.com/imdario/mergo/mergo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/imdario/mergo/mergo.go -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.codecov.yml: -------------------------------------------------------------------------------- 1 | ignore: 2 | - "output_tests/.*" 3 | 4 | -------------------------------------------------------------------------------- /vendor/github.com/json-iterator/go/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /bug_test.go 3 | /coverage.txt 4 | /.idea 5 | -------------------------------------------------------------------------------- /vendor/github.com/jstemmer/go-junit-report/.gitignore: -------------------------------------------------------------------------------- 1 | go-junit-report 2 | build/ 3 | -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/jtolds/gls/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/jtolds/gls/README.md -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/jtolds/gls/context.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gen_sym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/jtolds/gls/gen_sym.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/jtolds/gls/gid.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/id_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/jtolds/gls/id_pool.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-isatty/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/mattn/go-isatty/doc.go -------------------------------------------------------------------------------- /vendor/github.com/mmcdole/gofeed/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/mmcdole/gofeed/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mmcdole/gofeed/feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/mmcdole/gofeed/feed.go -------------------------------------------------------------------------------- /vendor/github.com/mmcdole/goxpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/mmcdole/goxpp/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mmcdole/goxpp/xpp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/mmcdole/goxpp/xpp.go -------------------------------------------------------------------------------- /vendor/github.com/modern-go/concurrent/.gitignore: -------------------------------------------------------------------------------- 1 | /coverage.txt 2 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /coverage.txt 3 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/reflect2_amd64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_386.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_amd64p32.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_arm64.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mips64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_mipsx.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_ppc64x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/modern-go/reflect2/relfect2_s390x.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/README.md -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/errors.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/go113.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/go113.go -------------------------------------------------------------------------------- /vendor/github.com/pkg/errors/stack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pkg/errors/stack.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/Makefile -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/_go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/_go.mod -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/_go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/_go.sum -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/db.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/down.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/down.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/fix.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/goose.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/goose.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/log.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/redo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/redo.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/reset.go -------------------------------------------------------------------------------- /vendor/github.com/pressly/goose/up.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/pressly/goose/up.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/CNAME: -------------------------------------------------------------------------------- 1 | zerolog.io -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/README.md -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/_config.yml: -------------------------------------------------------------------------------- 1 | remote_theme: rs/gh-readme 2 | -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/array.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/console.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/context.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/ctx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/ctx.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/encoder.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/event.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/event.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/fields.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/globals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/globals.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/go112.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/go112.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/hook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/hook.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/log.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/log/log.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/not_go112.go: -------------------------------------------------------------------------------- 1 | // +build !go1.12 2 | 3 | package zerolog 4 | 5 | const contextCallerSkipFrameCount = 3 6 | -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/pretty.png -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/sampler.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/syslog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/syslog.go -------------------------------------------------------------------------------- /vendor/github.com/rs/zerolog/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/rs/zerolog/writer.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/satori/go.uuid/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/satori/go.uuid/sql.go -------------------------------------------------------------------------------- /vendor/github.com/satori/go.uuid/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/satori/go.uuid/uuid.go -------------------------------------------------------------------------------- /vendor/github.com/shurcooL/vfsgen/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/shurcooL/vfsgen/doc.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | *~ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/apps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/apps.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/auth.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/bots.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/bots.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/chat.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/dnd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/dnd.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/im.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/im.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/info.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/item.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/misc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/misc.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/pins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/pins.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/rtm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/rtm.go -------------------------------------------------------------------------------- /vendor/github.com/slack-go/slack/team.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/slack-go/slack/team.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /coverage.* 3 | .DS_Store 4 | *.iml 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/swaggo/files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/files/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/swaggo/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/files/Makefile -------------------------------------------------------------------------------- /vendor/github.com/swaggo/files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/files/README.md -------------------------------------------------------------------------------- /vendor/github.com/swaggo/files/ab0x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/files/ab0x.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/Dockerfile -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/Makefile -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/README.md -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/const.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/doc.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/enums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/enums.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/gen/gen.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/golist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/golist.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/license -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/package.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/parser.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/schema.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/spec.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/swagger.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/types.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/utils.go -------------------------------------------------------------------------------- /vendor/github.com/swaggo/swag/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/swaggo/swag/version.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/Makefile -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/app.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/args.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/args.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/cli.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/docs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/fish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/fish.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/flag.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/funcs.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/help.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/parse.go -------------------------------------------------------------------------------- /vendor/github.com/urfave/cli/v2/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/urfave/cli/v2/sort.go -------------------------------------------------------------------------------- /vendor/github.com/xrash/smetrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/xrash/smetrics/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/xrash/smetrics/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/xrash/smetrics/doc.go -------------------------------------------------------------------------------- /vendor/github.com/xrash/smetrics/jaro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/github.com/xrash/smetrics/jaro.go -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/crypto/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/crypto/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/modfile/print.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/modfile/read.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/rule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/modfile/rule.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/modfile/work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/modfile/work.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/module/module.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/module/pseudo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/module/pseudo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/mod/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/mod/semver/semver.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/const.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/doctype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/doctype.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/entity.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/escape.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/foreign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/foreign.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/node.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/parse.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/render.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/html/token.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/webdav/file.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/if.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/webdav/if.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/lock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/webdav/lock.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/webdav/prop.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/webdav.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/webdav/webdav.go -------------------------------------------------------------------------------- /vendor/golang.org/x/net/webdav/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/net/webdav/xml.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dev_zos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/dev_zos.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/fdset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/fdset.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/empty.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/windows/empty.s -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/windows/race.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/windows/race0.go -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/sys/windows/str.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/message/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/text/message/doc.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/cond.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/text/runes/cond.go -------------------------------------------------------------------------------- /vendor/golang.org/x/text/runes/runes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/text/runes/runes.go -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/tools/LICENSE -------------------------------------------------------------------------------- /vendor/golang.org/x/tools/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/golang.org/x/tools/PATENTS -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/.gitignore -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/AUTHORS -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/fen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/fen.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/fsnotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/fsnotify.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/inotify.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/inotify.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/kqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/kqueue.go -------------------------------------------------------------------------------- /vendor/gopkg.in/fsnotify.v1/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/fsnotify.v1/windows.go -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/tomb.v1/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/tomb.v1/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/tomb.v1/tomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/tomb.v1/tomb.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/LICENSE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/NOTICE -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/README.md -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/apic.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/decode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/emitterc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/encode.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/parserc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/readerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/resolve.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/scannerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/sorter.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/writerc.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/yaml.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/yamlh.go -------------------------------------------------------------------------------- /vendor/gopkg.in/yaml.v3/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/gopkg.in/yaml.v3/yamlprivateh.go -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /version/build_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/version/build_info.go -------------------------------------------------------------------------------- /workspace/detective_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/detective_test.go -------------------------------------------------------------------------------- /workspace/insights.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/insights.go -------------------------------------------------------------------------------- /workspace/intel_dev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/intel_dev.go -------------------------------------------------------------------------------- /workspace/intel_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/intel_release.go -------------------------------------------------------------------------------- /workspace/relayed_bounce_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/relayed_bounce_test.go -------------------------------------------------------------------------------- /workspace/workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/workspace.go -------------------------------------------------------------------------------- /workspace/workspace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightmeterio/ControlCenter/HEAD/workspace/workspace_test.go --------------------------------------------------------------------------------