Browse Source
refactor(neon,neon_files,neon_news,neon_notes,neon_notifications): Use shared constants for app idspull/508/head
Kate
1 year ago
committed by
GitHub
15 changed files with 38 additions and 31 deletions
@ -1,3 +1,4 @@
|
||||
export 'package:neon/src/models/account.dart' hide Credentials, LoginQrcode; |
||||
export 'package:neon/src/models/app_ids.dart'; |
||||
export 'package:neon/src/models/app_implementation.dart'; |
||||
export 'package:neon/src/models/notifications_interface.dart'; |
||||
|
@ -0,0 +1,6 @@
|
||||
sealed class AppIDs { |
||||
static const files = 'files'; |
||||
static const news = 'news'; |
||||
static const notes = 'notes'; |
||||
static const notifications = 'notifications'; |
||||
} |
Loading…
Reference in new issue