Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Description
# Skyflow Go SDK
This go SDK is designed to help developers easily implement Skyflow into their go backend.

[![CI](https://img.shields.io/static/v1?label=CI&message=passing&color=green?style=plastic&logo=github)](https://github.com/skyflowapi/skyflow-go/actions)
Expand All @@ -8,7 +8,6 @@ This go SDK is designed to help developers easily implement Skyflow into their g

# Table of Contents

- [Description](#description)
- [Table of Contents](#table-of-contents)
- [Features](#features)
- [Installation](#installation)
Expand Down Expand Up @@ -77,6 +76,7 @@ func GetSkyflowBearerToken() (string, error) {
filePath := "<file_path>"
if saUtil.IsExpired(bearerToken) {
newToken, err := saUtil.GenerateBearerToken(filePath)
//or saUtil.getSATokenFromCredsFile(credsMap) to generate token using cred json as a string format
Comment thread
skyflow-puneet marked this conversation as resolved.
Outdated
if err != nil {
return "", err
} else {
Expand Down