diff --git a/src/instance.rs b/src/instance.rs index b2f6f91..238b778 100644 --- a/src/instance.rs +++ b/src/instance.rs @@ -6,9 +6,17 @@ use crate::URLBundle; use std::collections::HashMap; #[derive(Debug)] +/** +The [`Instance`] what you will be using to perform all sorts of actions on the Spacebar server. + */ pub struct Instance { main_url: String, urls: URLBundle, instance_info: InstancePoliciesSchema, requester: LimitedRequester, + gateway: Gateway, +} + +impl Instance { + pub fn new() {} }