mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 23:34:24 +01:00
6 lines
100 B
Dart
6 lines
100 B
Dart
typedef GhId = String;
|
|
|
|
extension GhIdX on GhId {
|
|
String get url => 'https://github.com/$this';
|
|
}
|