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.
- Host: GitHub
- URL: https://github.com/codevideo/go-utils
- Owner: codevideo
- License: mit
- Created: 2025-03-07T10:25:50.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T14:33:46.000Z (over 1 year ago)
- Last Synced: 2025-04-01T07:15:52.574Z (about 1 year ago)
- Language: Go
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
}
}
```