mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
14 lines
249 B
Dart
14 lines
249 B
Dart
import '../../core/persistant_store.dart';
|
|
|
|
class DockerStore extends PersistentStore {
|
|
DockerStore() : super('docker');
|
|
|
|
String? fetch(String? id) {
|
|
return box.get(id);
|
|
}
|
|
|
|
void put(String id, String host) {
|
|
box.put(id, host);
|
|
}
|
|
}
|