mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 07:14:28 +01:00
51 lines
907 B
Dart
51 lines
907 B
Dart
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.
|
|
static const contributors = <GhId>{
|
|
'its-tom',
|
|
'azkadev',
|
|
'kalashnikov',
|
|
'FrancXPT',
|
|
'RainSunMe',
|
|
'calvinweb',
|
|
'Liloupar',
|
|
'dccif',
|
|
};
|
|
static const participants = <GhId>{
|
|
'jaychoubaby',
|
|
'fecture',
|
|
'Tao173',
|
|
'QingAnLe',
|
|
'wxdjs',
|
|
'Aeorq',
|
|
'allonmymind',
|
|
'Yuuki-Rin',
|
|
'LittleState',
|
|
'karuboniru',
|
|
'whosphp',
|
|
'Climit',
|
|
'dianso',
|
|
'Jasondeepny',
|
|
'kaliwell',
|
|
'ymxkiss',
|
|
'Ealrang',
|
|
'hange33',
|
|
'yuchen1204',
|
|
'xgzxmytx',
|
|
'wind057',
|
|
'a1564471347',
|
|
'fanzhebufan1',
|
|
'wcbing',
|
|
'balh55y',
|
|
'wc7086',
|
|
'michaelsara',
|
|
'xingleiwu',
|
|
'Cooper098',
|
|
'xushuojie',
|
|
'AniberMokie',
|
|
'LucaLin233',
|
|
};
|
|
}
|