Skip to content

Commit

Permalink
Changed repository URL to ex-aws repository
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-foucault committed Oct 19, 2020
1 parent d72b541 commit aa9ac08
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 11 deletions.
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
# ExAws.Timestream
![CI](https://github.com/mike-foucault/ex_aws_timestream/workflows/CI/badge.svg)

Service module for [https://github.com/ex-aws/ex_aws](https://github.com/ex-aws/ex_aws)

[![Hex.pm](https://img.shields.io/hexpm/v/ex_aws_timestream.svg)](https://hex.pm/packages/ex_aws_timestream)
[![Build Docs](https://img.shields.io/badge/hexdocs-release-blue.svg)](https://hexdocs.pm/ex_aws_timestream/ExAws.Timestream.html)

## ExAws support notice
## Installation

The package can be installed by adding `ex_aws_timestream` to your list of dependencies in `mix.exs` along with `:ex_aws` and your preferred JSON codec / http client

```elixir
defp deps do
[
{:ex_aws_timestream, "~> 0.2.0"},
{:ex_aws, "~> 2.1.6"},
{:ex_aws_timestream, "~> 0.4.0"},
{:jason, "~> 1.2"},
{:hackney, "~> 1.16"},
]
end
```

Then

```
AWS_ACCESS_KEY_ID="..." AWS_SECRET_ACCESS_KEY="..." iex -S mix
```
## Example

```elixir
ExAws.Timestream.list_databases
|> ExAws.request
```

4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
defmodule ExAws.Timestream.MixProject do
use Mix.Project

@version "0.3.0"
@version "0.4.0"
@service "timestream"
@url "https://github.com/mike-foucault/ex_aws_#{@service}"
@url "https://github.com/ex-aws/ex_aws_#{@service}"
@name __MODULE__ |> Module.split() |> Enum.take(2) |> Enum.join(".")

def project do
Expand Down

0 comments on commit aa9ac08

Please sign in to comment.