func getSecure(instance *serviceclient.ServiceClient) (*http.Response, error) { return instance.GetSecure("/bla") }
func post(instance *serviceclient.ServiceClient) (*http.Response, error) { jsonString := `{"text":"fake twitter json string"}` reader := strings.NewReader(jsonString) return instance.Post("/bla/blubb", "application/json", reader) }
func deleteNormal(instance *serviceclient.ServiceClient) (*http.Response, error) { return instance.Delete("/bla") }