Skip to content

Commit

Permalink
fix: Fixing the create code.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Jan 25, 2023
1 parent db57922 commit 8f34fd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions packages/katana_cli/lib/command/create.dart
Original file line number Diff line number Diff line change
Expand Up @@ -311,17 +311,19 @@ final modelAdapter = RuntimeModelAdapter();
///
/// Changing to another adapter allows you to change to another authentication mechanism.
// TODO: Change the authentication.
const authAdapter = RuntimeAuthAdapter();
final authAdapter = RuntimeAuthAdapter();
/// App Storage.
///
/// Changing to another adapter allows you to change to another storage mechanism.
const storageAdapter = LocalStorageAdapter();
// TODO: Change the storage.
final storageAdapter = LocalStorageAdapter();
/// App Functions.
///
/// Changing to another adapter allows you to change to another functions mechanism.
const functionsAdapter = RuntimeFunctionsAdapter();
// TODO: Change the functions.
final functionsAdapter = RuntimeFunctionsAdapter();
/// App Theme.
///
Expand Down
2 changes: 1 addition & 1 deletion packages/katana_cli/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ packages:
name: image
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.11"
version: "4.0.12"
intl:
dependency: transitive
description:
Expand Down

0 comments on commit 8f34fd0

Please sign in to comment.