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

https://github.com/penguincabinet/fizzbuzz_google_cloud_functions

This is a FizzBuzz decision API that runs on Google Cloud Functions.
https://github.com/penguincabinet/fizzbuzz_google_cloud_functions

beginner faas fizzbuzz google-cloud

Last synced: 6 months ago
JSON representation

This is a FizzBuzz decision API that runs on Google Cloud Functions.

Awesome Lists containing this project

README

          

# 👏FizzBuzz Google Cloud Functions
Google Cloud Functionsで動くFizzBuzz判定APIです。

## 🏗デプロイ
```bash
make deploy
```

## 🔨使い方

$(url)はデプロイ先のURLです。

```bash
>curl $(url)/CheckFizzBuzz?n=15
FizzBuzz
```

```bash
>curl $(url)/CheckFizzBuzz?n=6
6
```

```bash
>curl $(url)/CheckFizzBuzz?n=Hello
ERROR:n is not number
```

## 🎫LICENSE

[MIT](./LICENSE)

## ✍Author

[PenguinCabinet](https://github.com/PenguinCabinet)