You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
379B

  1. # Copyright (C) 2010, 2011 Sebastian Thiel (byronimo@gmail.com) and contributors
  2. #
  3. # This module is part of GitDB and is released under
  4. # the New BSD License: http://www.opensource.org/licenses/bsd-license.php
  5. """Module containing information about types known to the database"""
  6. str_blob_type = b'blob'
  7. str_commit_type = b'commit'
  8. str_tree_type = b'tree'
  9. str_tag_type = b'tag'