|
| 1 | +### Module Graph |
| 2 | + |
| 3 | +```mermaid |
| 4 | +%%{ |
| 5 | + init: { |
| 6 | + 'theme': 'neutral' |
| 7 | + } |
| 8 | +}%% |
| 9 | +
|
| 10 | +graph LR |
| 11 | + subgraph :core |
| 12 | + :core:data["data"] |
| 13 | + :core:network["network"] |
| 14 | + :core:ui["ui"] |
| 15 | + :core:designsystem["designsystem"] |
| 16 | + :core:domain["domain"] |
| 17 | + end |
| 18 | + subgraph :feature |
| 19 | + :feature:auth["auth"] |
| 20 | + :feature:home["home"] |
| 21 | + :feature:settings["settings"] |
| 22 | + :feature:faq["faq"] |
| 23 | + :feature:editpassword["editpassword"] |
| 24 | + :feature:profile["profile"] |
| 25 | + :feature:history["history"] |
| 26 | + :feature:payments["payments"] |
| 27 | + :feature:finance["finance"] |
| 28 | + :feature:accounts["accounts"] |
| 29 | + :feature:invoices["invoices"] |
| 30 | + :feature:kyc["kyc"] |
| 31 | + :feature:notification["notification"] |
| 32 | + :feature:savedcards["savedcards"] |
| 33 | + :feature:receipt["receipt"] |
| 34 | + :feature:standing-instruction["standing-instruction"] |
| 35 | + :feature:request-money["request-money"] |
| 36 | + :feature:send-money["send-money"] |
| 37 | + :feature:make-transfer["make-transfer"] |
| 38 | + :feature:qr["qr"] |
| 39 | + :feature:merchants["merchants"] |
| 40 | + :feature:upi-setup["upi-setup"] |
| 41 | + end |
| 42 | + subgraph :libs |
| 43 | + :libs:mifos-passcode["mifos-passcode"] |
| 44 | + end |
| 45 | + :mifospay-shared --> :core:data |
| 46 | + :mifospay-shared --> :core:network |
| 47 | + :mifospay-shared --> :core:ui |
| 48 | + :mifospay-shared --> :core:designsystem |
| 49 | + :mifospay-shared --> :core:domain |
| 50 | + :mifospay-shared --> :feature:auth |
| 51 | + :mifospay-shared --> :libs:mifos-passcode |
| 52 | + :mifospay-shared --> :feature:home |
| 53 | + :mifospay-shared --> :feature:settings |
| 54 | + :mifospay-shared --> :feature:faq |
| 55 | + :mifospay-shared --> :feature:editpassword |
| 56 | + :mifospay-shared --> :feature:profile |
| 57 | + :mifospay-shared --> :feature:history |
| 58 | + :mifospay-shared --> :feature:payments |
| 59 | + :mifospay-shared --> :feature:finance |
| 60 | + :mifospay-shared --> :feature:accounts |
| 61 | + :mifospay-shared --> :feature:invoices |
| 62 | + :mifospay-shared --> :feature:kyc |
| 63 | + :mifospay-shared --> :feature:notification |
| 64 | + :mifospay-shared --> :feature:savedcards |
| 65 | + :mifospay-shared --> :feature:receipt |
| 66 | + :mifospay-shared --> :feature:standing-instruction |
| 67 | + :mifospay-shared --> :feature:request-money |
| 68 | + :mifospay-shared --> :feature:send-money |
| 69 | + :mifospay-shared --> :feature:make-transfer |
| 70 | + :mifospay-shared --> :feature:qr |
| 71 | + :mifospay-shared --> :feature:merchants |
| 72 | + :mifospay-shared --> :feature:upi-setup |
| 73 | +``` |
0 commit comments