Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keelerm84/go-conduit
A golang SDK for working with the phabricator conduit API
https://github.com/keelerm84/go-conduit
Last synced: 17 days ago
JSON representation
A golang SDK for working with the phabricator conduit API
- Host: GitHub
- URL: https://github.com/keelerm84/go-conduit
- Owner: keelerm84
- Created: 2015-05-17T01:54:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-05T11:59:37.000Z (over 8 years ago)
- Last Synced: 2024-10-03T15:14:53.588Z (about 1 month ago)
- Language: Go
- Size: 5.86 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-conduit
[Phabricator](http://phabricator.org/) is "an open source, software engineering
platform". It provides a JSON API for interacting with the system.This repository provides a bare bones SDK for interacting with the Phabricator
conduit API in go.## Build
Building an installing this package is as easy as
go build ./...
go install ./...## Disclaimer
This SDK is not production ready and is missing a TON of functionality. It was
originally developed to support one particular use case I had [at my day
job](https://researchsquare.com). As such, a full implementation of the
conduit API has not been completed at this time.If there are new endpoints you want to support, or current ones you want to
extend, I would welcome any pull requests you want to send my way.Also, I am very new to go, so if you know of a cleaner way to implement any of
this, I would love to hear about it.