Skip to content

Commit

Permalink
solve go mod init 1.19
Browse files Browse the repository at this point in the history
  • Loading branch information
Allan-Nava authored Jul 25, 2024
1 parent d58cd0c commit af4246d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.18.x', '1.19.x', '1.20.x', '1.21.x' ]
go-version: [ '1.19.x', '1.20.x', '1.21.x' ]
steps:
- uses: actions/checkout@v3
#
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
TikTok Go SDK: A simple library for interacting with TikTok Developer API in Go.


## Overview
## Overview
The TikTok Go SDK provides a straightforward way to integrate TikTok's Developer API into your Go applications.

## Installation
## Installation
To install the SDK, use go get:

```sh
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/HiWay-Media/tiktok-go-sdk

go 1.21.1
go 1.19

require (
github.com/go-resty/resty/v2 v2.13.1 // indirect
Expand Down
5 changes: 5 additions & 0 deletions tiktok/constants.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package tiktok

const (

)

0 comments on commit af4246d

Please sign in to comment.