# liquidweb-go **Repository Path**: mirrors_liquidweb/liquidweb-go ## Basic Information - **Project Name**: liquidweb-go - **Description**: Golang API client for Liquid Web's Storm API - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Build Status](https://travis-ci.org/liquidweb/liquidweb-go.svg?branch=master)](https://travis-ci.org/liquidweb/liquidweb-go) ## Usage ```golang uesrname := "blars" password := "tacoman" url := "https://api.stormondemand.com" api := storm.NewAPI(username, password, url) // Get storm servers api.StormServer.List() // Create a storm server stormServerParams := &storm.StormServerParams{ configID: 123, hostname: "blars.tacoman.com" zoneID: 123, password: "123", publicKey: "yourkey" } stormServer, err := api.StormServer.Create(stormServerParams) if err != nil { fmt.Errorf("Error creating storm server %v", err) } fmt.Println(stormServer.UniqID) ```