From a4de984f7956cdc73f7a522bf09d123f035a4421 Mon Sep 17 00:00:00 2001 From: Reed Allman Date: Mon, 9 Oct 2017 14:43:28 -0700 Subject: [PATCH] add fdk-go to main docs (#412) * add fdk-go to main docs * add note about using fdk-go to hot example --- docs/developers/clients.md | 1 + examples/formats/http/go/README.md | 3 +++ 2 files changed, 4 insertions(+) diff --git a/docs/developers/clients.md b/docs/developers/clients.md index 95a769b5e..6a49a82ee 100644 --- a/docs/developers/clients.md +++ b/docs/developers/clients.md @@ -3,6 +3,7 @@ ## Language Wrappers to help writing functions * [Java](https://github.com/fnproject/fdk-java) +* [Go](https://github.com/fnproject/fdk-go) ## Clients for the API diff --git a/examples/formats/http/go/README.md b/examples/formats/http/go/README.md index 6b3560a70..20f28e852 100644 --- a/examples/formats/http/go/README.md +++ b/examples/formats/http/go/README.md @@ -2,6 +2,9 @@ This is an example of a hot function. The [hot function documentation](/docs/hot-functions.md) contains an analysis of how this example works. +Note that you should probably be using the [fdk](https://github.com/fnproject/fdk-go) but this serves +as a good example of how to do a hot functions raw without the fdk. + ### How to run the example Install the CLI tool, start a Fn server and run `docker login` to login to DockerHub. See the [front page](/README.md) for instructions.