mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-03 19:17:11 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			290 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			290 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
import 'package:immich_mobile/services/app_settings.service.dart';
 | 
						|
import 'package:riverpod_annotation/riverpod_annotation.dart';
 | 
						|
 | 
						|
part 'app_settings.provider.g.dart';
 | 
						|
 | 
						|
@Riverpod(keepAlive: true)
 | 
						|
AppSettingsService appSettingsService(AppSettingsServiceRef ref) =>
 | 
						|
    AppSettingsService();
 |