├── LICENSE ├── README.md ├── example ├── .gitignore ├── analysis_options.yaml ├── bin │ ├── client.dart │ └── server.dart ├── lib │ ├── example.dart │ └── src │ │ └── echo_data_source.dart └── pubspec.yaml └── packages ├── operator_frog_client ├── .gitignore ├── analysis_options.yaml ├── example │ └── main.dart ├── lib │ ├── operator_frog_client.dart │ └── src │ │ ├── http.dart │ │ └── internal │ │ ├── http_client.dart │ │ ├── http_method.dart │ │ ├── http_request.dart │ │ ├── internal.dart │ │ └── request_attributions │ │ ├── body_attribution.dart │ │ ├── header_attribution.dart │ │ ├── query_attribution.dart │ │ ├── request_attribution.dart │ │ └── request_attributions.dart └── pubspec.yaml └── operator_frog_server ├── .gitignore ├── analysis_options.yaml ├── example └── main.dart ├── lib ├── operator_frog_server.dart └── src │ ├── http_methods.dart │ ├── internal │ ├── internal.dart │ ├── middleware_handler.dart │ ├── operator_handler.dart │ └── request_handler.dart │ └── middleware.dart └── pubspec.yaml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/README.md -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/analysis_options.yaml -------------------------------------------------------------------------------- /example/bin/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/bin/client.dart -------------------------------------------------------------------------------- /example/bin/server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/bin/server.dart -------------------------------------------------------------------------------- /example/lib/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/lib/example.dart -------------------------------------------------------------------------------- /example/lib/src/echo_data_source.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/lib/src/echo_data_source.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /packages/operator_frog_client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/.gitignore -------------------------------------------------------------------------------- /packages/operator_frog_client/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/analysis_options.yaml -------------------------------------------------------------------------------- /packages/operator_frog_client/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/example/main.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/operator_frog_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/operator_frog_client.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/http.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/http.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/http_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/http_client.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/http_method.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/http_method.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/http_request.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/http_request.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/internal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/internal.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/request_attributions/body_attribution.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/request_attributions/body_attribution.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/request_attributions/header_attribution.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/request_attributions/header_attribution.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/request_attributions/query_attribution.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/request_attributions/query_attribution.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/request_attributions/request_attribution.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/request_attributions/request_attribution.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/lib/src/internal/request_attributions/request_attributions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/lib/src/internal/request_attributions/request_attributions.dart -------------------------------------------------------------------------------- /packages/operator_frog_client/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_client/pubspec.yaml -------------------------------------------------------------------------------- /packages/operator_frog_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/.gitignore -------------------------------------------------------------------------------- /packages/operator_frog_server/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/analysis_options.yaml -------------------------------------------------------------------------------- /packages/operator_frog_server/example/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/example/main.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/operator_frog_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/operator_frog_server.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/src/http_methods.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/src/http_methods.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/src/internal/internal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/src/internal/internal.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/src/internal/middleware_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/src/internal/middleware_handler.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/src/internal/operator_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/src/internal/operator_handler.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/src/internal/request_handler.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/src/internal/request_handler.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/lib/src/middleware.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/lib/src/middleware.dart -------------------------------------------------------------------------------- /packages/operator_frog_server/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolfenrain/operator_frog/HEAD/packages/operator_frog_server/pubspec.yaml --------------------------------------------------------------------------------