# Functions
Connect will create a connection to our database.
# Variables
Create an ApiDBConfig struct variable that will be our parent connection to the database
- initilize its Connection variable inside the Connect() function
- We can then access this Global variable
*/.
# Structs
The apiDB struct main use is:
- To be the access point for our api methods to contact the database
- When we are defining an api method, we will define it on to this structure
- ex: func (apiDbCgf *apiDBConfig) someHandler(----){}
*/.