mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
12 lines
240 B
Dart
12 lines
240 B
Dart
import 'package:toolbox/core/persistant_store.dart';
|
|
|
|
class DockerStore extends PersistentStore {
|
|
String? getDockerHost(String id) {
|
|
return box.get(id);
|
|
}
|
|
|
|
void setDockerHost(String id, String host) {
|
|
box.put(id, host);
|
|
}
|
|
}
|