An open API service indexing awesome lists of open source software.

https://github.com/another-guy/magma

Provides helpers for AspNetCore WebApi services
https://github.com/another-guy/magma

Last synced: 11 months ago
JSON representation

Provides helpers for AspNetCore WebApi services

Awesome Lists containing this project

README

          

## Synopsis

[![Magma](https://github.com/another-guy/Magma/raw/master/Magma.png)](https://github.com/another-guy/Magma)

Provides helpers for AspNetCore WebApi services

## Code Example

```cs
TODO
```

## Motivation

Syntax sugar is syntax sugar: it's not a necessary thing per se but it can improve code quality.

## Installation

Magma is a available in a form of a NuGet package.
Follow regular installation process to bring it to your project.
https://www.nuget.org/packages/Magma/

## API Reference

// TODO

## Tests

There are no automated tests for the project at the moment.

## License

The code is distributed under the MIT license.

## Reporting an Issue

Reporting an issue, proposing a feature, or asking a question are all great ways to improve software quality.

Here are a few important things that package contributors will expect to see in a new born GitHub issue:
* the relevant version of the package;
* the steps to reproduce;
* the expected result;
* the observed result;
* some code samples illustrating current inconveniences and/or proposed improvements.

## Contributing

Contribution is the best way to improve any project!

1. Fork it!
2. Create your feature branch (```git checkout -b my-new-feature```).
3. Commit your changes (```git commit -am 'Added some feature'```)
4. Push to the branch (```git push origin my-new-feature```)
5. Create new Pull Request

...or follow steps described in a nice [fork guide](http://kbroman.org/github_tutorial/pages/fork.html) by Karl Broman