mirror of
https://github.com/Threnklyn/jira.git
synced 2026-06-06 21:20:48 +02:00
rewrite checkpoint
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package jira
|
||||
|
||||
import (
|
||||
"github.com/coryb/oreo"
|
||||
logging "gopkg.in/op/go-logging.v1"
|
||||
)
|
||||
|
||||
var log = logging.MustGetLogger("jira")
|
||||
|
||||
const VERSION = "1.0.0"
|
||||
|
||||
type Jira struct {
|
||||
Endpoint string `json:"endpoint,omitempty" yaml:"endpoint,omitempty"`
|
||||
UA HttpClient `json:"-" yaml:"-"`
|
||||
}
|
||||
|
||||
func NewJira(endpoint string) *Jira {
|
||||
return &Jira{
|
||||
Endpoint: endpoint,
|
||||
UA: oreo.New(),
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user