├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── gleam.toml ├── manifest.toml ├── src └── midas │ ├── effect.gleam │ └── task.gleam └── test ├── midas └── task_test.gleam └── midas_test.gleam /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.ez 3 | /build 4 | erl_crash.dump 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/README.md -------------------------------------------------------------------------------- /gleam.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/gleam.toml -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/manifest.toml -------------------------------------------------------------------------------- /src/midas/effect.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/src/midas/effect.gleam -------------------------------------------------------------------------------- /src/midas/task.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/src/midas/task.gleam -------------------------------------------------------------------------------- /test/midas/task_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/test/midas/task_test.gleam -------------------------------------------------------------------------------- /test/midas_test.gleam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midas-framework/midas/HEAD/test/midas_test.gleam --------------------------------------------------------------------------------