opt.: RNode

This commit is contained in:
lollipopkit
2024-06-08 15:35:19 +08:00
parent da48d1f66c
commit 8121eef839
8 changed files with 20 additions and 44 deletions

View File

@@ -1,5 +1,3 @@
import 'package:toolbox/data/model/app/github_id.dart';
abstract final class GithubIds {
// Thanks
// If you want to change your Github ID, please open an issue.
@@ -75,3 +73,9 @@ abstract final class GithubIds {
'Jasonzhu1207',
};
}
typedef GhId = String;
extension GhIdX on GhId {
String get url => 'https://github.com/$this';
}