Compare commits

...

2 Commits

8 changed files with 6797 additions and 8117 deletions

View File

@ -6,8 +6,10 @@ class SegmentRouter implements Router
public function add(string $method, string $route, callable $handler): Router public function add(string $method, string $route, callable $handler): Router
{ {
// Expand the route into segments // Expand the route into segments and make dynamic segments into a common placeholder
$segments = explode('/', trim($route, '/')); $segments = array_map(function($segment) {
return str_starts_with($segment, ':') ? ':x' : $segment;
}, explode('/', trim($route, '/')));
// Push each segment into the routes array as a node // Push each segment into the routes array as a node
$node = &$this->routes; $node = &$this->routes;
@ -25,40 +27,40 @@ class SegmentRouter implements Router
$uriSegments = explode('/', trim($uri, '/')); $uriSegments = explode('/', trim($uri, '/'));
$node = $this->routes; $node = $this->routes;
$params = []; $params = [];
// Traverse the routes array to find the handler // Traverse the routes array to find the handler
foreach ($uriSegments as $segment) { foreach ($uriSegments as $segment) {
// Check if the segment exists in the node, or if there's a dynamic segment // Check if the segment exists in the node
if (!isset($node[$segment])) { if (isset($node[$segment])) {
$dynamicSegment = $this->matchDynamicSegment($node, $segment);
if ($dynamicSegment) {
$params[] = $segment;
$node = $node[$dynamicSegment];
} else {
return 404;
}
} else {
$node = $node[$segment]; $node = $node[$segment];
} else {
// Handle dynamic segments (starting with ":")
$dynamicSegment = null;
// Loop through the node and find the first dynamic segment
foreach ($node as $k => $v) {
if (str_starts_with($k, ':')) {
$dynamicSegment = $k;
break; // Break early as we only need one match
}
}
// If no dynamic segment was found, return 404
if ($dynamicSegment === null) return 404;
// Otherwise, store the parameter and move to the dynamic node
$params[] = $segment;
$node = $node[$dynamicSegment];
} }
} }
// If the HTTP method is not supported, return 405 // Check if the HTTP method is supported
if (!isset($node[$method])) return 405; if (!isset($node[$method])) return 405;
// Return the handler // Return the handler and parameters
return [$node[$method], $params]; return [$node[$method] , $params];
}
// Look through a node to find a dynamic segment
private function matchDynamicSegment(array $node, string $segment): string|false
{
foreach (array_keys($node) as $key) {
// If the key starts with a :, it's a dynamic segment
if (strpos($key, ':') === 0) return $key;
}
return false;
} }
public function clear(): Router public function clear(): Router
{ {

View File

@ -8,7 +8,10 @@ class TrieRouter implements Router
public function add(string $method, string $route, callable $handler): Router public function add(string $method, string $route, callable $handler): Router
{ {
$node = &$this->root[$method]; $node = &$this->root[$method];
$segments = explode('/', trim($route, '/')); // Expand the route into segments and make dynamic segments into a common placeholder
$segments = array_map(function($segment) {
return str_starts_with($segment, ':') ? ':x' : $segment;
}, explode('/', trim($route, '/')));
foreach ($segments as $segment) { foreach ($segments as $segment) {
if (!isset($node[$segment])) { if (!isset($node[$segment])) {

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,10 @@
/ /
├── / ├── /
│ └── GET │ └── GET
├── :slug ├── :x
│ └── GET │ └── GET
├── tags ├── tags
│ └── GET │ └── GET
└── tag └── tag
└── :tag └── :x
└── GET └── GET

View File

@ -1,22 +1,22 @@
/ /
├── authorizations ├── authorizations
│ ├── GET │ ├── GET
│ ├── :id │ ├── :x
│ │ ├── GET │ │ ├── GET
│ │ └── DELETE │ │ └── DELETE
│ └── POST │ └── POST
├── applications ├── applications
│ └── :client_id │ └── :x
│ └── tokens │ └── tokens
│ ├── :access_token │ ├── :x
│ │ ├── GET │ │ ├── GET
│ │ └── DELETE │ │ └── DELETE
│ └── DELETE │ └── DELETE
├── events ├── events
│ └── GET │ └── GET
├── repos ├── repos
│ └── :owner │ └── :x
│ └── :repo │ └── :x
│ ├── events │ ├── events
│ │ └── GET │ │ └── GET
│ ├── notifications │ ├── notifications
@ -32,27 +32,27 @@
│ │ └── DELETE │ │ └── DELETE
│ ├── git │ ├── git
│ │ ├── blobs │ │ ├── blobs
│ │ │ ├── :sha │ │ │ ├── :x
│ │ │ │ └── GET │ │ │ │ └── GET
│ │ │ └── POST │ │ │ └── POST
│ │ ├── commits │ │ ├── commits
│ │ │ ├── :sha │ │ │ ├── :x
│ │ │ │ └── GET │ │ │ │ └── GET
│ │ │ └── POST │ │ │ └── POST
│ │ ├── refs │ │ ├── refs
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ └── POST │ │ │ └── POST
│ │ ├── tags │ │ ├── tags
│ │ │ ├── :sha │ │ │ ├── :x
│ │ │ │ └── GET │ │ │ │ └── GET
│ │ │ └── POST │ │ │ └── POST
│ │ └── trees │ │ └── trees
│ │ ├── :sha │ │ ├── :x
│ │ │ └── GET │ │ │ └── GET
│ │ └── POST │ │ └── POST
│ ├── issues │ ├── issues
│ │ ├── GET │ │ ├── GET
│ │ ├── :number │ │ ├── :x
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ ├── comments │ │ │ ├── comments
│ │ │ │ ├── GET │ │ │ │ ├── GET
@ -62,23 +62,23 @@
│ │ │ └── labels │ │ │ └── labels
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ ├── POST │ │ │ ├── POST
│ │ │ ├── :name │ │ │ ├── :x
│ │ │ │ └── DELETE │ │ │ │ └── DELETE
│ │ │ ├── PUT │ │ │ ├── PUT
│ │ │ └── DELETE │ │ │ └── DELETE
│ │ └── POST │ │ └── POST
│ ├── assignees │ ├── assignees
│ │ ├── GET │ │ ├── GET
│ │ └── :assignee │ │ └── :x
│ │ └── GET │ │ └── GET
│ ├── labels │ ├── labels
│ │ ├── GET │ │ ├── GET
│ │ ├── :name │ │ ├── :x
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ └── DELETE │ │ │ └── DELETE
│ │ └── POST │ │ └── POST
│ ├── milestones │ ├── milestones
│ │ ├── :number │ │ ├── :x
│ │ │ ├── labels │ │ │ ├── labels
│ │ │ │ └── GET │ │ │ │ └── GET
│ │ │ ├── GET │ │ │ ├── GET
@ -87,7 +87,7 @@
│ │ └── POST │ │ └── POST
│ ├── pulls │ ├── pulls
│ │ ├── GET │ │ ├── GET
│ │ ├── :number │ │ ├── :x
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ ├── commits │ │ │ ├── commits
│ │ │ │ └── GET │ │ │ │ └── GET
@ -111,22 +111,22 @@
│ │ └── GET │ │ └── GET
│ ├── branches │ ├── branches
│ │ ├── GET │ │ ├── GET
│ │ └── :branch │ │ └── :x
│ │ └── GET │ │ └── GET
│ ├── DELETE │ ├── DELETE
│ ├── collaborators │ ├── collaborators
│ │ ├── GET │ │ ├── GET
│ │ └── :user │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── PUT │ │ ├── PUT
│ │ └── DELETE │ │ └── DELETE
│ ├── comments │ ├── comments
│ │ ├── GET │ │ ├── GET
│ │ └── :id │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ └── DELETE │ │ └── DELETE
│ ├── commits │ ├── commits
│ │ ├── :sha │ │ ├── :x
│ │ │ ├── comments │ │ │ ├── comments
│ │ │ │ ├── GET │ │ │ │ ├── GET
│ │ │ │ └── POST │ │ │ │ └── POST
@ -136,13 +136,13 @@
│ │ └── GET │ │ └── GET
│ ├── keys │ ├── keys
│ │ ├── GET │ │ ├── GET
│ │ ├── :id │ │ ├── :x
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ └── DELETE │ │ │ └── DELETE
│ │ └── POST │ │ └── POST
│ ├── downloads │ ├── downloads
│ │ ├── GET │ │ ├── GET
│ │ └── :id │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ └── DELETE │ │ └── DELETE
│ ├── forks │ ├── forks
@ -150,7 +150,7 @@
│ │ └── POST │ │ └── POST
│ ├── hooks │ ├── hooks
│ │ ├── GET │ │ ├── GET
│ │ ├── :id │ │ ├── :x
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ ├── tests │ │ │ ├── tests
│ │ │ │ └── POST │ │ │ │ └── POST
@ -160,7 +160,7 @@
│ │ └── POST │ │ └── POST
│ ├── releases │ ├── releases
│ │ ├── GET │ │ ├── GET
│ │ ├── :id │ │ ├── :x
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ ├── DELETE │ │ │ ├── DELETE
│ │ │ └── assets │ │ │ └── assets
@ -178,16 +178,16 @@
│ │ └── punch_card │ │ └── punch_card
│ │ └── GET │ │ └── GET
│ └── statuses │ └── statuses
│ └── :ref │ └── :x
│ ├── GET │ ├── GET
│ └── POST │ └── POST
├── networks ├── networks
│ └── :owner │ └── :x
│ └── :repo │ └── :x
│ └── events │ └── events
│ └── GET │ └── GET
├── orgs ├── orgs
│ └── :org │ └── :x
│ ├── events │ ├── events
│ │ └── GET │ │ └── GET
│ ├── issues │ ├── issues
@ -195,12 +195,12 @@
│ ├── GET │ ├── GET
│ ├── members │ ├── members
│ │ ├── GET │ │ ├── GET
│ │ └── :user │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ └── DELETE │ │ └── DELETE
│ ├── public_members │ ├── public_members
│ │ ├── GET │ │ ├── GET
│ │ └── :user │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── PUT │ │ ├── PUT
│ │ └── DELETE │ │ └── DELETE
@ -211,7 +211,7 @@
│ ├── GET │ ├── GET
│ └── POST │ └── POST
├── users ├── users
│ ├── :user │ ├── :x
│ │ ├── received_events │ │ ├── received_events
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ └── public │ │ │ └── public
@ -221,7 +221,7 @@
│ │ │ ├── public │ │ │ ├── public
│ │ │ │ └── GET │ │ │ │ └── GET
│ │ │ └── orgs │ │ │ └── orgs
│ │ │ └── :org │ │ │ └── :x
│ │ │ └── GET │ │ │ └── GET
│ │ ├── starred │ │ ├── starred
│ │ │ └── GET │ │ │ └── GET
@ -238,7 +238,7 @@
│ │ │ └── GET │ │ │ └── GET
│ │ ├── following │ │ ├── following
│ │ │ ├── GET │ │ │ ├── GET
│ │ │ └── :target_user │ │ │ └── :x
│ │ │ └── GET │ │ │ └── GET
│ │ └── keys │ │ └── keys
│ │ └── GET │ │ └── GET
@ -249,7 +249,7 @@
│ ├── GET │ ├── GET
│ ├── PUT │ ├── PUT
│ └── threads │ └── threads
│ └── :id │ └── :x
│ ├── GET │ ├── GET
│ └── subscription │ └── subscription
│ ├── GET │ ├── GET
@ -258,15 +258,15 @@
├── user ├── user
│ ├── starred │ ├── starred
│ │ ├── GET │ │ ├── GET
│ │ └── :owner │ │ └── :x
│ │ └── :repo │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── PUT │ │ ├── PUT
│ │ └── DELETE │ │ └── DELETE
│ ├── subscriptions │ ├── subscriptions
│ │ ├── GET │ │ ├── GET
│ │ └── :owner │ │ └── :x
│ │ └── :repo │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── PUT │ │ ├── PUT
│ │ └── DELETE │ │ └── DELETE
@ -288,19 +288,19 @@
│ │ └── GET │ │ └── GET
│ ├── following │ ├── following
│ │ ├── GET │ │ ├── GET
│ │ └── :user │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── PUT │ │ ├── PUT
│ │ └── DELETE │ │ └── DELETE
│ └── keys │ └── keys
│ ├── GET │ ├── GET
│ ├── :id │ ├── :x
│ │ ├── GET │ │ ├── GET
│ │ └── DELETE │ │ └── DELETE
│ └── POST │ └── POST
├── gists ├── gists
│ ├── GET │ ├── GET
│ ├── :id │ ├── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── star │ │ ├── star
│ │ │ ├── PUT │ │ │ ├── PUT
@ -317,7 +317,7 @@
├── gitignore ├── gitignore
│ └── templates │ └── templates
│ ├── GET │ ├── GET
│ └── :name │ └── :x
│ └── GET │ └── GET
├── markdown ├── markdown
│ ├── POST │ ├── POST
@ -328,19 +328,19 @@
├── rate_limit ├── rate_limit
│ └── GET │ └── GET
├── teams ├── teams
│ └── :id │ └── :x
│ ├── GET │ ├── GET
│ ├── DELETE │ ├── DELETE
│ ├── members │ ├── members
│ │ ├── GET │ │ ├── GET
│ │ └── :user │ │ └── :x
│ │ ├── GET │ │ ├── GET
│ │ ├── PUT │ │ ├── PUT
│ │ └── DELETE │ │ └── DELETE
│ └── repos │ └── repos
│ ├── GET │ ├── GET
│ └── :owner │ └── :x
│ └── :repo │ └── :x
│ ├── GET │ ├── GET
│ ├── PUT │ ├── PUT
│ └── DELETE │ └── DELETE
@ -358,19 +358,19 @@
└── legacy └── legacy
├── issues ├── issues
│ └── search │ └── search
│ └── :owner │ └── :x
│ └── :repository │ └── :x
│ └── :state │ └── :x
│ └── :keyword │ └── :x
│ └── GET │ └── GET
├── repos ├── repos
│ └── search │ └── search
│ └── :keyword │ └── :x
│ └── GET │ └── GET
└── user └── user
├── search ├── search
│ └── :keyword │ └── :x
│ └── GET │ └── GET
└── email └── email
└── :email └── :x
└── GET └── GET

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@
│ ├── _children │ ├── _children
│ │ └── _handler │ │ └── _handler
│ └── _handler │ └── _handler
├── :slug ├── :x
│ ├── _children │ ├── _children
│ │ └── _handler │ │ └── _handler
│ └── _handler │ └── _handler
@ -14,7 +14,7 @@
│ └── _handler │ └── _handler
└── tag └── tag
├── _children ├── _children
│ └── :tag │ └── :x
│ ├── _children │ ├── _children
│ │ └── _handler │ │ └── _handler
│ └── _handler │ └── _handler

View File

@ -3,18 +3,18 @@
│ ├── authorizations │ ├── authorizations
│ │ ├── _children │ │ ├── _children
│ │ │ ├── _handler │ │ │ ├── _handler
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── _handler │ │ │ └── _handler
│ │ └── _handler │ │ └── _handler
│ ├── applications │ ├── applications
│ │ ├── _children │ │ ├── _children
│ │ │ └── :client_id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── tokens │ │ │ │ └── tokens
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :access_token │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -27,9 +27,9 @@
│ │ └── _handler │ │ └── _handler
│ ├── repos │ ├── repos
│ │ ├── _children │ │ ├── _children
│ │ │ └── :owner │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :repo │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── events │ │ │ │ │ ├── events
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
@ -55,14 +55,14 @@
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── blobs │ │ │ │ │ │ │ ├── blobs
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ └── :sha │ │ │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ ├── commits │ │ │ │ │ │ │ ├── commits
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ └── :sha │ │ │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ └── _handler
@ -73,14 +73,14 @@
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ ├── tags │ │ │ │ │ │ │ ├── tags
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ └── :sha │ │ │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── trees │ │ │ │ │ │ │ └── trees
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── :sha │ │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
@ -89,7 +89,7 @@
│ │ │ │ │ ├── issues │ │ │ │ │ ├── issues
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :number │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ │ ├── comments │ │ │ │ │ │ │ │ ├── comments
@ -109,7 +109,7 @@
│ │ │ │ │ ├── assignees │ │ │ │ │ ├── assignees
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :assignee │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -117,14 +117,14 @@
│ │ │ │ │ ├── labels │ │ │ │ │ ├── labels
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :name │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── milestones │ │ │ │ │ ├── milestones
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── :number │ │ │ │ │ │ │ ├── :x
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ ├── labels │ │ │ │ │ │ │ │ │ ├── labels
│ │ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ │ ├── _children
@ -137,7 +137,7 @@
│ │ │ │ │ ├── pulls │ │ │ │ │ ├── pulls
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :number │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ │ ├── commits │ │ │ │ │ │ │ │ ├── commits
@ -178,7 +178,7 @@
│ │ │ │ │ ├── branches │ │ │ │ │ ├── branches
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :branch │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -186,7 +186,7 @@
│ │ │ │ │ ├── collaborators │ │ │ │ │ ├── collaborators
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :user │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -194,14 +194,14 @@
│ │ │ │ │ ├── comments │ │ │ │ │ ├── comments
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── commits │ │ │ │ │ ├── commits
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── :sha │ │ │ │ │ │ │ ├── :x
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ ├── comments │ │ │ │ │ │ │ │ │ ├── comments
│ │ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ │ ├── _children
@ -218,7 +218,7 @@
│ │ │ │ │ ├── keys │ │ │ │ │ ├── keys
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -226,7 +226,7 @@
│ │ │ │ │ ├── downloads │ │ │ │ │ ├── downloads
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -238,7 +238,7 @@
│ │ │ │ │ ├── hooks │ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -246,7 +246,7 @@
│ │ │ │ │ ├── releases │ │ │ │ │ ├── releases
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ │ └── assets
@ -280,7 +280,7 @@
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── statuses │ │ │ │ │ └── statuses
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :ref │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -290,9 +290,9 @@
│ │ └── _handler │ │ └── _handler
│ ├── networks │ ├── networks
│ │ ├── _children │ │ ├── _children
│ │ │ └── :owner │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :repo │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── events │ │ │ │ │ └── events
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
@ -303,7 +303,7 @@
│ │ └── _handler │ │ └── _handler
│ ├── orgs │ ├── orgs
│ │ ├── _children │ │ ├── _children
│ │ │ └── :org │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── events │ │ │ │ ├── events
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
@ -317,7 +317,7 @@
│ │ │ │ ├── members │ │ │ │ ├── members
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ ├── _handler │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ └── :user │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -325,7 +325,7 @@
│ │ │ │ ├── public_members │ │ │ │ ├── public_members
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ ├── _handler │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ └── :user │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -342,7 +342,7 @@
│ │ └── _handler │ │ └── _handler
│ ├── users │ ├── users
│ │ ├── _children │ │ ├── _children
│ │ │ ├── :user │ │ │ ├── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── received_events │ │ │ │ │ ├── received_events
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
@ -361,7 +361,7 @@
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── orgs │ │ │ │ │ │ │ └── orgs
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── :org │ │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
@ -395,7 +395,7 @@
│ │ │ │ │ ├── following │ │ │ │ │ ├── following
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :target_user │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -416,7 +416,7 @@
│ │ │ ├── _handler │ │ │ ├── _handler
│ │ │ └── threads │ │ │ └── threads
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :id │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ └── subscription │ │ │ │ │ └── subscription
@ -431,9 +431,9 @@
│ │ │ ├── starred │ │ │ ├── starred
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ └── :owner │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :repo │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -442,9 +442,9 @@
│ │ │ ├── subscriptions │ │ │ ├── subscriptions
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ └── :owner │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :repo │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -478,7 +478,7 @@
│ │ │ ├── following │ │ │ ├── following
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ └── :user │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -486,7 +486,7 @@
│ │ │ └── keys │ │ │ └── keys
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── _handler │ │ │ │ ├── _handler
│ │ │ │ └── :id │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
@ -495,7 +495,7 @@
│ ├── gists │ ├── gists
│ │ ├── _children │ │ ├── _children
│ │ │ ├── _handler │ │ │ ├── _handler
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── _handler │ │ │ │ ├── _handler
│ │ │ │ └── star │ │ │ │ └── star
@ -517,7 +517,7 @@
│ │ │ └── templates │ │ │ └── templates
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── _handler │ │ │ │ ├── _handler
│ │ │ │ └── :name │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
@ -533,13 +533,13 @@
│ │ └── _handler │ │ └── _handler
│ ├── teams │ ├── teams
│ │ ├── _children │ │ ├── _children
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── _handler │ │ │ │ ├── _handler
│ │ │ │ ├── members │ │ │ │ ├── members
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ ├── _handler │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ └── :user │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -547,9 +547,9 @@
│ │ │ │ └── repos │ │ │ │ └── repos
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ └── :owner │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :repo │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -586,13 +586,13 @@
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── search │ │ │ │ └── search
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :owner │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :repository │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :state │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── :keyword │ │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
@ -605,7 +605,7 @@
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── search │ │ │ │ └── search
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :keyword │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -615,14 +615,14 @@
│ │ ├── _children │ │ ├── _children
│ │ │ ├── search │ │ │ ├── search
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :keyword │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── email │ │ │ └── email
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :email │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
@ -637,7 +637,7 @@
│ ├── gists │ ├── gists
│ │ ├── _children │ │ ├── _children
│ │ │ ├── _handler │ │ │ ├── _handler
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── forks │ │ │ │ └── forks
│ │ │ │ ├── _children │ │ │ │ ├── _children
@ -647,9 +647,9 @@
│ │ └── _handler │ │ └── _handler
│ ├── repos │ ├── repos
│ │ ├── _children │ │ ├── _children
│ │ │ └── :owner │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :repo │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── git │ │ │ │ │ ├── git
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
@ -677,7 +677,7 @@
│ │ │ │ │ ├── issues │ │ │ │ │ ├── issues
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :number │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ ├── comments │ │ │ │ │ │ │ │ ├── comments
│ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ ├── _children
@ -703,7 +703,7 @@
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── commits │ │ │ │ │ ├── commits
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :sha │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── comments │ │ │ │ │ │ │ │ └── comments
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
@ -722,7 +722,7 @@
│ │ │ │ │ ├── hooks │ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── _handler │ │ │ │ │ │ │ ├── _handler
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ └── tests
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
@ -740,7 +740,7 @@
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── statuses │ │ │ │ │ └── statuses
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :ref │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -758,7 +758,7 @@
│ │ └── _handler │ │ └── _handler
│ ├── orgs │ ├── orgs
│ │ ├── _children │ │ ├── _children
│ │ │ └── :org │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── teams │ │ │ │ ├── teams
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
@ -788,19 +788,19 @@
├── DELETE ├── DELETE
│ ├── authorizations │ ├── authorizations
│ │ ├── _children │ │ ├── _children
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── _handler │ │ │ └── _handler
│ │ └── _handler │ │ └── _handler
│ ├── applications │ ├── applications
│ │ ├── _children │ │ ├── _children
│ │ │ └── :client_id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── tokens │ │ │ │ └── tokens
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ └── :access_token │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -811,7 +811,7 @@
│ │ ├── _children │ │ ├── _children
│ │ │ └── threads │ │ │ └── threads
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :id │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── subscription │ │ │ │ │ └── subscription
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
@ -824,9 +824,9 @@
│ │ ├── _children │ │ ├── _children
│ │ │ ├── starred │ │ │ ├── starred
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :owner │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :repo │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -834,9 +834,9 @@
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ ├── subscriptions │ │ │ ├── subscriptions
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :owner │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :repo │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -848,14 +848,14 @@
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ ├── following │ │ │ ├── following
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :user │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── keys │ │ │ └── keys
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :id │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
@ -863,9 +863,9 @@
│ │ └── _handler │ │ └── _handler
│ ├── repos │ ├── repos
│ │ ├── _children │ │ ├── _children
│ │ │ └── :owner │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :repo │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ ├── subscription │ │ │ │ │ ├── subscription
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
@ -873,18 +873,18 @@
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── labels │ │ │ │ │ ├── labels
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :name │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── issues │ │ │ │ │ ├── issues
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :number │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ │ └── labels
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ ├── :name │ │ │ │ │ │ │ │ │ ├── :x
│ │ │ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ │ │ └── _handler
@ -894,7 +894,7 @@
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── milestones │ │ │ │ │ ├── milestones
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :number │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
@ -902,42 +902,42 @@
│ │ │ │ │ ├── _handler │ │ │ │ │ ├── _handler
│ │ │ │ │ ├── collaborators │ │ │ │ │ ├── collaborators
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :user │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── comments │ │ │ │ │ ├── comments
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── keys │ │ │ │ │ ├── keys
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── downloads │ │ │ │ │ ├── downloads
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ ├── hooks │ │ │ │ │ ├── hooks
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── :id │ │ │ │ │ │ │ └── :x
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── releases │ │ │ │ │ └── releases
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :id │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
@ -947,7 +947,7 @@
│ │ └── _handler │ │ └── _handler
│ ├── gists │ ├── gists
│ │ ├── _children │ │ ├── _children
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── star │ │ │ │ ├── star
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
@ -958,18 +958,18 @@
│ │ └── _handler │ │ └── _handler
│ ├── orgs │ ├── orgs
│ │ ├── _children │ │ ├── _children
│ │ │ └── :org │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── members │ │ │ │ ├── members
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :user │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── _handler │ │ │ │ │ │ │ └── _handler
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── public_members │ │ │ │ └── public_members
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :user │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -978,21 +978,21 @@
│ │ └── _handler │ │ └── _handler
│ └── teams │ └── teams
│ ├── _children │ ├── _children
│ │ └── :id │ │ └── :x
│ │ ├── _children │ │ ├── _children
│ │ │ ├── _handler │ │ │ ├── _handler
│ │ │ ├── members │ │ │ ├── members
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :user │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── repos │ │ │ └── repos
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :owner │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :repo │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -1006,7 +1006,7 @@
│ │ ├── _handler │ │ ├── _handler
│ │ └── threads │ │ └── threads
│ │ ├── _children │ │ ├── _children
│ │ │ └── :id │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── subscription │ │ │ │ └── subscription
│ │ │ │ ├── _children │ │ │ │ ├── _children
@ -1017,9 +1017,9 @@
│ └── _handler │ └── _handler
├── repos ├── repos
│ ├── _children │ ├── _children
│ │ └── :owner │ │ └── :x
│ │ ├── _children │ │ ├── _children
│ │ │ └── :repo │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ ├── notifications │ │ │ │ ├── notifications
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
@ -1031,7 +1031,7 @@
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ ├── issues │ │ │ │ ├── issues
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :number │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ └── labels │ │ │ │ │ │ │ └── labels
│ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ ├── _children
@ -1041,7 +1041,7 @@
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ ├── pulls │ │ │ │ ├── pulls
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── :number │ │ │ │ │ │ └── :x
│ │ │ │ │ │ ├── _children │ │ │ │ │ │ ├── _children
│ │ │ │ │ │ │ ├── merge │ │ │ │ │ │ │ ├── merge
│ │ │ │ │ │ │ │ ├── _children │ │ │ │ │ │ │ │ ├── _children
@ -1055,7 +1055,7 @@
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── collaborators │ │ │ │ └── collaborators
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :user │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -1067,9 +1067,9 @@
│ ├── _children │ ├── _children
│ │ ├── starred │ │ ├── starred
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :owner │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :repo │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -1077,9 +1077,9 @@
│ │ │ └── _handler │ │ │ └── _handler
│ │ ├── subscriptions │ │ ├── subscriptions
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :owner │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── :repo │ │ │ │ │ └── :x
│ │ │ │ │ ├── _children │ │ │ │ │ ├── _children
│ │ │ │ │ │ └── _handler │ │ │ │ │ │ └── _handler
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
@ -1087,7 +1087,7 @@
│ │ │ └── _handler │ │ │ └── _handler
│ │ └── following │ │ └── following
│ │ ├── _children │ │ ├── _children
│ │ │ └── :user │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── _handler │ │ │ └── _handler
@ -1095,7 +1095,7 @@
│ └── _handler │ └── _handler
├── gists ├── gists
│ ├── _children │ ├── _children
│ │ └── :id │ │ └── :x
│ │ ├── _children │ │ ├── _children
│ │ │ └── star │ │ │ └── star
│ │ │ ├── _children │ │ │ ├── _children
@ -1105,11 +1105,11 @@
│ └── _handler │ └── _handler
├── orgs ├── orgs
│ ├── _children │ ├── _children
│ │ └── :org │ │ └── :x
│ │ ├── _children │ │ ├── _children
│ │ │ └── public_members │ │ │ └── public_members
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :user │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
@ -1118,20 +1118,20 @@
│ └── _handler │ └── _handler
└── teams └── teams
├── _children ├── _children
│ └── :id │ └── :x
│ ├── _children │ ├── _children
│ │ ├── members │ │ ├── members
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :user │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler
│ │ │ └── _handler │ │ │ └── _handler
│ │ └── repos │ │ └── repos
│ │ ├── _children │ │ ├── _children
│ │ │ └── :owner │ │ │ └── :x
│ │ │ ├── _children │ │ │ ├── _children
│ │ │ │ └── :repo │ │ │ │ └── :x
│ │ │ │ ├── _children │ │ │ │ ├── _children
│ │ │ │ │ └── _handler │ │ │ │ │ └── _handler
│ │ │ │ └── _handler │ │ │ │ └── _handler