pinboard 456 B

1234567891011121314151617181920
  1. #!/usr/bin/env vpython3
  2. # Copyright 2019 The Chromium 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. import logging
  6. import sys
  7. from core import path_util
  8. path_util.AddPyUtilsToPath()
  9. from cli_tools import pinboard
  10. if __name__ == '__main__':
  11. try:
  12. sys.exit(pinboard.Main())
  13. except Exception:
  14. logging.exception('Terminated with exception:')
  15. sys.exit(1)