blob: 7bd4ec8783322c3313d75f60168b01849b629c3c [file] [log] [blame]
Chris McDonalde8735d22020-01-30 14:07:27 -07001#!/usr/bin/env python3
2# Copyright 2020 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""Stub implementation of the checker interface."""
7
8import argparse
9
10
11def argument_parser():
12 parser = argparse.ArgumentParser()
13 parser.add_argument('--program', metavar='PATH')
14 parser.add_argument('--project', metavar='PATH')
15 return parser
16
17
18def main():
19 parser = argument_parser()
20 args = parser.parse_args()
21 print('Called with project: {}'.format(args.project))
22 print('Called with program: {}'.format(args.program))
23
24
25if __name__ == '__main__':
26 main()