Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nvisibleinc/go-ari-library
Library for consuming and producing ARI events from the client side
https://github.com/nvisibleinc/go-ari-library
Last synced: 3 months ago
JSON representation
Library for consuming and producing ARI events from the client side
- Host: GitHub
- URL: https://github.com/nvisibleinc/go-ari-library
- Owner: nvisibleinc
- License: apache-2.0
- Archived: true
- Created: 2014-09-10T01:52:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-18T17:45:39.000Z (over 9 years ago)
- Last Synced: 2024-07-20T02:29:30.521Z (4 months ago)
- Language: Go
- Size: 380 KB
- Stars: 8
- Watchers: 5
- Forks: 6
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go-ari-library
==============
A library for building an Asterisk REST Interface proxy and client using a
message bus backend for delivery of messages, written in the Go programming
language.This library abstracts the message bus from the application by providing an
interface for setting up channels to consume Events and Commands in a bus
agnostic way.Installation
------------
```
$ go import https://github.com/nvisibleinc/go-ari-library
```Usage
-----
```go
import (
"https://github.com/nvisibleinc/go-ari-library"
)
```For a useful example of usage of this library, see the [go-ari-proxy][1] and
[ari-voicemail][2] projects.Licensing
---------
> Copyright 2015 N-Visible Technology Lab, Inc.
>
> Licensed under the Apache License, Version 2.0 (the “License”); you may not
> use this file except in compliance with the License. You may obtain a copy
> of the License at
>
> http://www.apache.org/licenses/LICENSE-2.0
>
> Unless required by applicable law or agreed to in writing, software distributed
> under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR
> CONDITIONS OF ANY KIND, either express or implied. See the License for the
> specific language governing permissions and limitations under the License.[1]: https://github.com/nvisibleinc/go-ari-proxy
[2]: https://github.com/nvisibleinc/ari-voicemail