mirror of
https://github.com/ente-io/ente.git
synced 2025-05-28 21:47:57 +00:00
14 lines
397 B
Dart
14 lines
397 B
Dart
import 'package:nanoid/nanoid.dart';
|
|
|
|
const enteWhiteListedAlphabet =
|
|
'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
const clusterIDLength = 22;
|
|
|
|
String newClusterID() {
|
|
return "cluster_${customAlphabet(enteWhiteListedAlphabet, clusterIDLength)}";
|
|
}
|
|
|
|
String newIsolateTaskID(String task) {
|
|
return "${task}_${customAlphabet(enteWhiteListedAlphabet, clusterIDLength)}";
|
|
}
|