Skip to content

Commit

Permalink
Merge pull request #461 from rabbitson87/main
Browse files Browse the repository at this point in the history
Correction of nested folder structure reference error when creating message for rust
  • Loading branch information
temeddix authored Oct 18, 2024
2 parents 1e662b8 + d65bd78 commit b758ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flutter_package/bin/src/message.dart
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ Future<void> generateMessageCode({
final resourceNames = entry.value;
final modRsLines = <String>[];
for (final resourceName in resourceNames) {
modRsLines.add('mod $resourceName;');
modRsLines.add('pub mod $resourceName;');
modRsLines.add('pub use $resourceName::*;');
}
for (final otherSubPath in resourcesInFolders.keys) {
Expand Down

0 comments on commit b758ad1

Please sign in to comment.