gg_kidney 1.0.5
gg_kidney: ^1.0.5 copied to clipboard
gg_kidney performs maintenance tasks on our various repositories.
example/gg_kidney_example.dart
#!/usr/bin/env dart
// @license
// Copyright (c) 2019 - 2024 Dr. Gabriel Gatzsche. All Rights Reserved.
//
// Use of this source code is governed by terms that can be
// found in the LICENSE file in the root of this package.
import 'package:gg_kidney/gg_kidney.dart';
Future<void> main() async {
const param = 'foo';
final ggKidney = GgKidney(
ggLog: (msg) {},
);
print('Executing with param $param');
await ggKidney.run();
print('Done.');
}