Skip to content

Commit

Permalink
fix: Add UniversalUI to create in katana_cli.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Mar 3, 2023
1 parent 1aa86d3 commit 12a55c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/katana_cli/lib/command/create.dart
Original file line number Diff line number Diff line change
Expand Up @@ -431,13 +431,17 @@ final functionsAdapter = RuntimeFunctionsAdapter();
///
/// Adapters for logging can be defined here.
// TODO: Change the loggers.
final loggerAdapters = <LoggerAdapter>[];
final loggerAdapters = <LoggerAdapter>[
const ConsoleLoggerAdapter(),
];
/// Masamune adapter.
///
/// The Masamune framework plugin functions can be defined together.
// TODO: Add the adapters.
final masamuneAdapters = <MasamuneAdapter>[];
final masamuneAdapters = <MasamuneAdapter>[
const UniversalMasamuneAdapter(),
];
/// App Theme.
///
Expand Down

0 comments on commit 12a55c5

Please sign in to comment.