├── .travis.yml ├── LICENSE ├── README.md ├── action.go ├── action_test.go ├── activity ├── README.md ├── anomaly │ ├── README.md │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ ├── examples │ │ ├── activity_example.go │ │ ├── api │ │ │ ├── README.md │ │ │ ├── anomaly-payload.json │ │ │ ├── main.go │ │ │ └── support │ │ │ │ └── main.go │ │ ├── examples_test.go │ │ └── json │ │ │ ├── README.md │ │ │ ├── anomaly-payload.json │ │ │ ├── flogo.json │ │ │ └── support │ │ │ └── main.go │ └── metadata.go ├── circuitbreaker │ ├── README.md │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ ├── examples │ │ ├── activity_example.go │ │ ├── api │ │ │ ├── README.md │ │ │ ├── main.go │ │ │ └── server │ │ │ │ └── main.go │ │ ├── examples_test.go │ │ └── json │ │ │ ├── README.md │ │ │ ├── flogo.json │ │ │ └── server │ │ │ └── main.go │ └── metadata.go ├── graphql │ ├── README.md │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ ├── examples │ │ ├── example_test.go │ │ ├── json-throttle-server-time │ │ │ ├── README.md │ │ │ └── flogo.json │ │ ├── json │ │ │ ├── README.md │ │ │ └── flogo.json │ │ └── schema.graphql │ ├── metadata.go │ ├── querydepth.go │ └── ratelimiter │ │ └── limiter.go ├── jwt │ ├── README.md │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ ├── examples │ │ ├── activity_example.go │ │ ├── api │ │ │ ├── README.md │ │ │ └── main.go │ │ ├── examples_test.go │ │ └── json │ │ │ ├── README.md │ │ │ └── flogo.json │ └── metadata.go ├── ratelimiter │ ├── README.md │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ ├── examples │ │ ├── activity_example.go │ │ ├── api │ │ │ ├── basic │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ │ └── smart │ │ │ │ ├── README.md │ │ │ │ └── main.go │ │ ├── examples_test.go │ │ └── json │ │ │ ├── basic │ │ │ ├── README.md │ │ │ └── flogo.json │ │ │ └── smart │ │ │ ├── README.md │ │ │ ├── flogo.json │ │ │ └── main.go │ └── metadata.go └── sqld │ ├── README.md │ ├── activity.go │ ├── activity_test.go │ ├── descriptor.json │ ├── examples │ ├── activity_example.go │ ├── api │ │ ├── README.md │ │ ├── attack-payload.json │ │ ├── main.go │ │ └── payload.json │ ├── examples_test.go │ └── json │ │ ├── README.md │ │ ├── attack-payload.json │ │ ├── flogo.json │ │ └── payload.json │ ├── injectsec │ ├── LICENSE │ ├── LINKS.md │ ├── README.md │ ├── ab0x.go │ ├── cmd │ │ └── injectsec_train │ │ │ └── main.go │ ├── data │ │ ├── DB2Enumeration.fuzzdb.txt │ │ ├── Generic-BlindSQLi.fuzzdb.txt │ │ ├── Generic-SQLi.txt │ │ ├── LICENSE │ │ ├── MSSQL-Enumeration.fuzzdb.txt │ │ ├── MSSQL.fuzzdb.txt │ │ ├── MYSQL.fuzzdb.txt │ │ ├── MySQL-Read-Local-Files.fuzzdb.txt │ │ ├── MySQL-SQLi-Login-Bypass.fuzzdb.txt │ │ ├── Oracle.fuzzdb.txt │ │ ├── Postgres-Enumeration.fuzzdb.txt │ │ ├── data.go │ │ ├── data_test.go │ │ └── parts.go │ ├── fileb0x.json │ ├── gru │ │ ├── LICENSE │ │ ├── gru.go │ │ ├── gru_test.go │ │ └── model.go │ ├── injectsec.go │ ├── injectsec_test.go │ └── training_data_example.csv │ └── metadata.go ├── api ├── api.go └── types.go ├── descriptor.json ├── docs ├── default-channel-pattern.md └── default-http-pattern.md ├── examples ├── api │ ├── async-gateway │ │ ├── README.md │ │ └── main.go │ ├── basic-gateway │ │ ├── README.md │ │ └── main.go │ ├── custom-pattern │ │ ├── README.md │ │ └── main.go │ ├── default-channel-pattern │ │ ├── README.md │ │ └── main.go │ ├── default-http-pattern │ │ ├── README.md │ │ └── main.go │ ├── handler-routing │ │ ├── README.md │ │ └── main.go │ └── resource-handler │ │ ├── fileResource │ │ ├── README.md │ │ └── main.go │ │ └── httpResource │ │ ├── README.md │ │ └── main.go ├── examples.go ├── examples_test.go └── json │ ├── async-gateway │ ├── README.md │ └── flogo.json │ ├── basic-gateway │ ├── README.md │ └── flogo.json │ ├── custom-pattern │ ├── README.md │ ├── flogo.json │ ├── server │ │ └── main.go │ └── serviceRegistration.go │ ├── default-channel-pattern │ ├── README.md │ └── flogo.json │ ├── default-http-pattern │ ├── README.md │ ├── flogo.json │ └── main.go │ ├── handler-routing │ ├── README.md │ └── flogo.json │ └── resource-handler │ ├── fileResource │ ├── README.md │ ├── flogo.json │ └── resource.json │ └── httpResource │ ├── README.md │ ├── flogo.json │ └── main.go ├── generate.go ├── generate └── main.go ├── generate_test.go ├── go.mod ├── go.sum ├── internal ├── core │ ├── adapter.go │ ├── core.go │ ├── expr.go │ └── types.go ├── function │ ├── all.go │ └── error │ │ ├── isneterror.go │ │ ├── isneterror_test.go │ │ ├── string.go │ │ ├── string_test.go │ │ ├── type.go │ │ └── type_test.go ├── pattern │ ├── DefaultChannelPattern.json │ ├── DefaultHttpPattern.json │ ├── assets.go │ └── generate.go ├── schema │ ├── assets.go │ ├── generate │ │ └── schema_generator.go │ ├── schema.go │ └── schema.json └── testing │ ├── activity │ ├── activity.go │ └── metadata.go │ ├── trigger │ ├── metadata.go │ └── trigger.go │ └── util.go ├── metadata.go └── pattern.go /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/README.md -------------------------------------------------------------------------------- /action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/action.go -------------------------------------------------------------------------------- /action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/action_test.go -------------------------------------------------------------------------------- /activity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/README.md -------------------------------------------------------------------------------- /activity/anomaly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/README.md -------------------------------------------------------------------------------- /activity/anomaly/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/activity.go -------------------------------------------------------------------------------- /activity/anomaly/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/activity_test.go -------------------------------------------------------------------------------- /activity/anomaly/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/descriptor.json -------------------------------------------------------------------------------- /activity/anomaly/examples/activity_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/activity_example.go -------------------------------------------------------------------------------- /activity/anomaly/examples/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/api/README.md -------------------------------------------------------------------------------- /activity/anomaly/examples/api/anomaly-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/api/anomaly-payload.json -------------------------------------------------------------------------------- /activity/anomaly/examples/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/api/main.go -------------------------------------------------------------------------------- /activity/anomaly/examples/api/support/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/api/support/main.go -------------------------------------------------------------------------------- /activity/anomaly/examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/examples_test.go -------------------------------------------------------------------------------- /activity/anomaly/examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/json/README.md -------------------------------------------------------------------------------- /activity/anomaly/examples/json/anomaly-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/json/anomaly-payload.json -------------------------------------------------------------------------------- /activity/anomaly/examples/json/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/json/flogo.json -------------------------------------------------------------------------------- /activity/anomaly/examples/json/support/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/examples/json/support/main.go -------------------------------------------------------------------------------- /activity/anomaly/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/anomaly/metadata.go -------------------------------------------------------------------------------- /activity/circuitbreaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/README.md -------------------------------------------------------------------------------- /activity/circuitbreaker/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/activity.go -------------------------------------------------------------------------------- /activity/circuitbreaker/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/activity_test.go -------------------------------------------------------------------------------- /activity/circuitbreaker/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/descriptor.json -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/activity_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/activity_example.go -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/api/README.md -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/api/main.go -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/api/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/api/server/main.go -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/examples_test.go -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/json/README.md -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/json/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/json/flogo.json -------------------------------------------------------------------------------- /activity/circuitbreaker/examples/json/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/examples/json/server/main.go -------------------------------------------------------------------------------- /activity/circuitbreaker/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/circuitbreaker/metadata.go -------------------------------------------------------------------------------- /activity/graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/README.md -------------------------------------------------------------------------------- /activity/graphql/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/activity.go -------------------------------------------------------------------------------- /activity/graphql/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/activity_test.go -------------------------------------------------------------------------------- /activity/graphql/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/descriptor.json -------------------------------------------------------------------------------- /activity/graphql/examples/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/examples/example_test.go -------------------------------------------------------------------------------- /activity/graphql/examples/json-throttle-server-time/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/examples/json-throttle-server-time/README.md -------------------------------------------------------------------------------- /activity/graphql/examples/json-throttle-server-time/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/examples/json-throttle-server-time/flogo.json -------------------------------------------------------------------------------- /activity/graphql/examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/examples/json/README.md -------------------------------------------------------------------------------- /activity/graphql/examples/json/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/examples/json/flogo.json -------------------------------------------------------------------------------- /activity/graphql/examples/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/examples/schema.graphql -------------------------------------------------------------------------------- /activity/graphql/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/metadata.go -------------------------------------------------------------------------------- /activity/graphql/querydepth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/querydepth.go -------------------------------------------------------------------------------- /activity/graphql/ratelimiter/limiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/graphql/ratelimiter/limiter.go -------------------------------------------------------------------------------- /activity/jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/README.md -------------------------------------------------------------------------------- /activity/jwt/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/activity.go -------------------------------------------------------------------------------- /activity/jwt/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/activity_test.go -------------------------------------------------------------------------------- /activity/jwt/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/descriptor.json -------------------------------------------------------------------------------- /activity/jwt/examples/activity_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/examples/activity_example.go -------------------------------------------------------------------------------- /activity/jwt/examples/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/examples/api/README.md -------------------------------------------------------------------------------- /activity/jwt/examples/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/examples/api/main.go -------------------------------------------------------------------------------- /activity/jwt/examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/examples/examples_test.go -------------------------------------------------------------------------------- /activity/jwt/examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/examples/json/README.md -------------------------------------------------------------------------------- /activity/jwt/examples/json/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/examples/json/flogo.json -------------------------------------------------------------------------------- /activity/jwt/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/jwt/metadata.go -------------------------------------------------------------------------------- /activity/ratelimiter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/README.md -------------------------------------------------------------------------------- /activity/ratelimiter/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/activity.go -------------------------------------------------------------------------------- /activity/ratelimiter/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/activity_test.go -------------------------------------------------------------------------------- /activity/ratelimiter/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/descriptor.json -------------------------------------------------------------------------------- /activity/ratelimiter/examples/activity_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/activity_example.go -------------------------------------------------------------------------------- /activity/ratelimiter/examples/api/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/api/basic/README.md -------------------------------------------------------------------------------- /activity/ratelimiter/examples/api/basic/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/api/basic/main.go -------------------------------------------------------------------------------- /activity/ratelimiter/examples/api/smart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/api/smart/README.md -------------------------------------------------------------------------------- /activity/ratelimiter/examples/api/smart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/api/smart/main.go -------------------------------------------------------------------------------- /activity/ratelimiter/examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/examples_test.go -------------------------------------------------------------------------------- /activity/ratelimiter/examples/json/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/json/basic/README.md -------------------------------------------------------------------------------- /activity/ratelimiter/examples/json/basic/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/json/basic/flogo.json -------------------------------------------------------------------------------- /activity/ratelimiter/examples/json/smart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/json/smart/README.md -------------------------------------------------------------------------------- /activity/ratelimiter/examples/json/smart/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/json/smart/flogo.json -------------------------------------------------------------------------------- /activity/ratelimiter/examples/json/smart/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/examples/json/smart/main.go -------------------------------------------------------------------------------- /activity/ratelimiter/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/ratelimiter/metadata.go -------------------------------------------------------------------------------- /activity/sqld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/README.md -------------------------------------------------------------------------------- /activity/sqld/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/activity.go -------------------------------------------------------------------------------- /activity/sqld/activity_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/activity_test.go -------------------------------------------------------------------------------- /activity/sqld/descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/descriptor.json -------------------------------------------------------------------------------- /activity/sqld/examples/activity_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/activity_example.go -------------------------------------------------------------------------------- /activity/sqld/examples/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/api/README.md -------------------------------------------------------------------------------- /activity/sqld/examples/api/attack-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/api/attack-payload.json -------------------------------------------------------------------------------- /activity/sqld/examples/api/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/api/main.go -------------------------------------------------------------------------------- /activity/sqld/examples/api/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/api/payload.json -------------------------------------------------------------------------------- /activity/sqld/examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/examples_test.go -------------------------------------------------------------------------------- /activity/sqld/examples/json/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/json/README.md -------------------------------------------------------------------------------- /activity/sqld/examples/json/attack-payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/json/attack-payload.json -------------------------------------------------------------------------------- /activity/sqld/examples/json/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/json/flogo.json -------------------------------------------------------------------------------- /activity/sqld/examples/json/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/examples/json/payload.json -------------------------------------------------------------------------------- /activity/sqld/injectsec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/LICENSE -------------------------------------------------------------------------------- /activity/sqld/injectsec/LINKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/LINKS.md -------------------------------------------------------------------------------- /activity/sqld/injectsec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/README.md -------------------------------------------------------------------------------- /activity/sqld/injectsec/ab0x.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/ab0x.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/cmd/injectsec_train/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/cmd/injectsec_train/main.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/DB2Enumeration.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/DB2Enumeration.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/Generic-BlindSQLi.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/Generic-BlindSQLi.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/Generic-SQLi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/Generic-SQLi.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/LICENSE: -------------------------------------------------------------------------------- 1 | MIT license 2 | See https://github.com/danielmiessler/SecLists 3 | -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/MSSQL-Enumeration.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/MSSQL-Enumeration.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/MSSQL.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/MSSQL.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/MYSQL.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/MYSQL.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/MySQL-Read-Local-Files.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/MySQL-Read-Local-Files.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/MySQL-SQLi-Login-Bypass.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/MySQL-SQLi-Login-Bypass.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/Oracle.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/Oracle.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/Postgres-Enumeration.fuzzdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/Postgres-Enumeration.fuzzdb.txt -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/data.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/data_test.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/data/parts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/data/parts.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/fileb0x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/fileb0x.json -------------------------------------------------------------------------------- /activity/sqld/injectsec/gru/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/gru/LICENSE -------------------------------------------------------------------------------- /activity/sqld/injectsec/gru/gru.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/gru/gru.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/gru/gru_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/gru/gru_test.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/gru/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/gru/model.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/injectsec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/injectsec.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/injectsec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/injectsec_test.go -------------------------------------------------------------------------------- /activity/sqld/injectsec/training_data_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/injectsec/training_data_example.csv -------------------------------------------------------------------------------- /activity/sqld/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/activity/sqld/metadata.go -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/api/api.go -------------------------------------------------------------------------------- /api/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/api/types.go -------------------------------------------------------------------------------- /descriptor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/descriptor.json -------------------------------------------------------------------------------- /docs/default-channel-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/docs/default-channel-pattern.md -------------------------------------------------------------------------------- /docs/default-http-pattern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/docs/default-http-pattern.md -------------------------------------------------------------------------------- /examples/api/async-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/async-gateway/README.md -------------------------------------------------------------------------------- /examples/api/async-gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/async-gateway/main.go -------------------------------------------------------------------------------- /examples/api/basic-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/basic-gateway/README.md -------------------------------------------------------------------------------- /examples/api/basic-gateway/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/basic-gateway/main.go -------------------------------------------------------------------------------- /examples/api/custom-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/custom-pattern/README.md -------------------------------------------------------------------------------- /examples/api/custom-pattern/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/custom-pattern/main.go -------------------------------------------------------------------------------- /examples/api/default-channel-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/default-channel-pattern/README.md -------------------------------------------------------------------------------- /examples/api/default-channel-pattern/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/default-channel-pattern/main.go -------------------------------------------------------------------------------- /examples/api/default-http-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/default-http-pattern/README.md -------------------------------------------------------------------------------- /examples/api/default-http-pattern/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/default-http-pattern/main.go -------------------------------------------------------------------------------- /examples/api/handler-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/handler-routing/README.md -------------------------------------------------------------------------------- /examples/api/handler-routing/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/handler-routing/main.go -------------------------------------------------------------------------------- /examples/api/resource-handler/fileResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/resource-handler/fileResource/README.md -------------------------------------------------------------------------------- /examples/api/resource-handler/fileResource/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/resource-handler/fileResource/main.go -------------------------------------------------------------------------------- /examples/api/resource-handler/httpResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/resource-handler/httpResource/README.md -------------------------------------------------------------------------------- /examples/api/resource-handler/httpResource/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/api/resource-handler/httpResource/main.go -------------------------------------------------------------------------------- /examples/examples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/examples.go -------------------------------------------------------------------------------- /examples/examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/examples_test.go -------------------------------------------------------------------------------- /examples/json/async-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/async-gateway/README.md -------------------------------------------------------------------------------- /examples/json/async-gateway/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/async-gateway/flogo.json -------------------------------------------------------------------------------- /examples/json/basic-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/basic-gateway/README.md -------------------------------------------------------------------------------- /examples/json/basic-gateway/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/basic-gateway/flogo.json -------------------------------------------------------------------------------- /examples/json/custom-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/custom-pattern/README.md -------------------------------------------------------------------------------- /examples/json/custom-pattern/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/custom-pattern/flogo.json -------------------------------------------------------------------------------- /examples/json/custom-pattern/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/custom-pattern/server/main.go -------------------------------------------------------------------------------- /examples/json/custom-pattern/serviceRegistration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/custom-pattern/serviceRegistration.go -------------------------------------------------------------------------------- /examples/json/default-channel-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/default-channel-pattern/README.md -------------------------------------------------------------------------------- /examples/json/default-channel-pattern/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/default-channel-pattern/flogo.json -------------------------------------------------------------------------------- /examples/json/default-http-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/default-http-pattern/README.md -------------------------------------------------------------------------------- /examples/json/default-http-pattern/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/default-http-pattern/flogo.json -------------------------------------------------------------------------------- /examples/json/default-http-pattern/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/default-http-pattern/main.go -------------------------------------------------------------------------------- /examples/json/handler-routing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/handler-routing/README.md -------------------------------------------------------------------------------- /examples/json/handler-routing/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/handler-routing/flogo.json -------------------------------------------------------------------------------- /examples/json/resource-handler/fileResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/resource-handler/fileResource/README.md -------------------------------------------------------------------------------- /examples/json/resource-handler/fileResource/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/resource-handler/fileResource/flogo.json -------------------------------------------------------------------------------- /examples/json/resource-handler/fileResource/resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/resource-handler/fileResource/resource.json -------------------------------------------------------------------------------- /examples/json/resource-handler/httpResource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/resource-handler/httpResource/README.md -------------------------------------------------------------------------------- /examples/json/resource-handler/httpResource/flogo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/resource-handler/httpResource/flogo.json -------------------------------------------------------------------------------- /examples/json/resource-handler/httpResource/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/examples/json/resource-handler/httpResource/main.go -------------------------------------------------------------------------------- /generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/generate.go -------------------------------------------------------------------------------- /generate/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/generate/main.go -------------------------------------------------------------------------------- /generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/generate_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/go.sum -------------------------------------------------------------------------------- /internal/core/adapter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/core/adapter.go -------------------------------------------------------------------------------- /internal/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/core/core.go -------------------------------------------------------------------------------- /internal/core/expr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/core/expr.go -------------------------------------------------------------------------------- /internal/core/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/core/types.go -------------------------------------------------------------------------------- /internal/function/all.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/all.go -------------------------------------------------------------------------------- /internal/function/error/isneterror.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/error/isneterror.go -------------------------------------------------------------------------------- /internal/function/error/isneterror_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/error/isneterror_test.go -------------------------------------------------------------------------------- /internal/function/error/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/error/string.go -------------------------------------------------------------------------------- /internal/function/error/string_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/error/string_test.go -------------------------------------------------------------------------------- /internal/function/error/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/error/type.go -------------------------------------------------------------------------------- /internal/function/error/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/function/error/type_test.go -------------------------------------------------------------------------------- /internal/pattern/DefaultChannelPattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/pattern/DefaultChannelPattern.json -------------------------------------------------------------------------------- /internal/pattern/DefaultHttpPattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/pattern/DefaultHttpPattern.json -------------------------------------------------------------------------------- /internal/pattern/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/pattern/assets.go -------------------------------------------------------------------------------- /internal/pattern/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/pattern/generate.go -------------------------------------------------------------------------------- /internal/schema/assets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/schema/assets.go -------------------------------------------------------------------------------- /internal/schema/generate/schema_generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/schema/generate/schema_generator.go -------------------------------------------------------------------------------- /internal/schema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/schema/schema.go -------------------------------------------------------------------------------- /internal/schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/schema/schema.json -------------------------------------------------------------------------------- /internal/testing/activity/activity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/testing/activity/activity.go -------------------------------------------------------------------------------- /internal/testing/activity/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/testing/activity/metadata.go -------------------------------------------------------------------------------- /internal/testing/trigger/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/testing/trigger/metadata.go -------------------------------------------------------------------------------- /internal/testing/trigger/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/testing/trigger/trigger.go -------------------------------------------------------------------------------- /internal/testing/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/internal/testing/util.go -------------------------------------------------------------------------------- /metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/metadata.go -------------------------------------------------------------------------------- /pattern.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/project-flogo/microgateway/HEAD/pattern.go --------------------------------------------------------------------------------