Routes needed: - Create server: `POST /servers` Utilizes do-minecraft's `createMinecraftDroplet` method - Get All Servers: `GET /servers` Gets all servers for the specified account - Get Server Details: `GET /servers/{id}` Gets all details for a specific Minecraft server - Update Server: `PUT /servers/{id}` Updates information about a specific Minecraft server - Start Server: `PUT /servers/{id}/start` Starts the DigitalOcean Droplet and the Minecraft Server when that's done - Stop Server: `PUT /servers/{id}/stop` Stops the Minecraft Server and then the DigitalOcean Droplet - Delete Server: `DELETE /servers/{id}` Deletes a specific Minecraft server and destroys the DigitalOcean droplet using the `killMinecraftDroplet` method
Routes needed:
POST /serversUtilizes do-minecraft'screateMinecraftDropletmethodGET /serversGets all servers for the specified accountGET /servers/{id}Gets all details for a specific Minecraft serverPUT /servers/{id}Updates information about a specific Minecraft serverPUT /servers/{id}/startStarts the DigitalOcean Droplet and the Minecraft Server when that's donePUT /servers/{id}/stopStops the Minecraft Server and then the DigitalOcean DropletDELETE /servers/{id}Deletes a specific Minecraft server and destroys the DigitalOcean droplet using thekillMinecraftDropletmethod