Giter Club home page Giter Club logo

barrister-go's People

Contributors

colega avatar coopernurse avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

barrister-go's Issues

The example/ folder won't compile

main() is defined several times in that package, as well as CalculatorImpl. It looks like it's intended to be a documentation package, but as files are have .go extension, you can't run go test ./... in the root of the repository.

Related to #4

Proposal: extract all Iris support to another repository

I think this repository will be cleaner and clearer if all Iris-related stuff was extracted to an external repository, like barrister-go-iris. Iris support is completely decoupled from the main logic of barrister-go package and it only makes support more complex as you need to install those packages in order to run a simple go test ./...

Add way to set custom Transport on http.Client

Clients often need to connect to servers who may be using self-signed certificates. Currently Barrister uses the default http.Client which means connecting to these servers will fail. It would be useful to be able to pass in a custom Transport.

Here is how I have fudged things for now in barrister.go:

func (t *HttpTransport) Send(in []byte) ([]byte, error) {
...
tr := &http.Transport{
  TLSClientConfig: &tls.Config{InsecureSkipVerify : true},
}

client := &http.Client{ Transport: tr  }

`conform` documentation is missing

The test.sh script generates conform server & client, but they are not documented so a newcomer doesn't have any clue of what they are for and how are they used. Could you give a one liner explanation of it?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.