Make sure only three class definitions are distributed

This commit is contained in:
Vincent Jacques
2012-03-14 22:56:12 +01:00
parent 85eef75635
commit 69cc298fd1
8 changed files with 143 additions and 129 deletions
+8 -1
View File
@@ -1,9 +1,16 @@
from GithubObject import *
from Repository import Repository
from NamedUser import NamedUser
from Organization import Organization
Event = GithubObject(
"Event",
InternalSimpleAttributes(
"type", "public", "payload", "created_at", "id", "commit_id", "url",
"event", "issue",
),
)
InternalObjectAttribute( "repo", Repository ),
InternalObjectAttribute( "actor", NamedUser ),
InternalObjectAttribute( "org", Organization ),
)