gg_kidney 1.0.5 copy "gg_kidney: ^1.0.5" to clipboard
gg_kidney: ^1.0.5 copied to clipboard

discontinuedreplaced by: kidney

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.');
}