Commit 9fc94ba2 authored by Sander van Harmelen's avatar Sander van Harmelen

`IPAddress` can be a single comma separated string

Fixes #575
parent 2b019087
......@@ -18,7 +18,6 @@ package gitlab
import (
"fmt"
"net"
"net/url"
"time"
)
......@@ -39,7 +38,7 @@ type Runner struct {
Description string `json:"description"`
Active bool `json:"active"`
IsShared bool `json:"is_shared"`
IPAddress *net.IP `json:"ip_address"`
IPAddress string `json:"ip_address"`
Name string `json:"name"`
Online bool `json:"online"`
Status string `json:"status"`
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment