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

https://github.com/codevideo/go-utils

Utils seperately packaged to be consumed in things like Netlify serverless functions.
https://github.com/codevideo/go-utils

Last synced: 4 months ago
JSON representation

Utils seperately packaged to be consumed in things like Netlify serverless functions.

Awesome Lists containing this project

README

          

# go-utils

So far, this is just a single Slack message util to be consumed in Netlify serverless functions for the CodeVideo ecosystem.

## Usage

```shell
go get github.com/codevideo/go-utils@v0.0.2
```

```go
package main

import (
utils "github.com/codevideo/go-utils/slack"
)

func main() {
err := utils.SendSlackMessage(slackMessageContent)
if err != nil {
log.Printf("Error sending Slack message: %v", err)
}
}
```