mirror of
https://github.com/pikami/tiktok-dl.git
synced 2025-02-05 15:26:38 +00:00
12 lines
268 B
Go
12 lines
268 B
Go
package client
|
|
|
|
import (
|
|
models "../models"
|
|
)
|
|
|
|
// GetVideoDetails - returns details of video
|
|
func GetVideoDetails(videoURL string) models.Upload {
|
|
actionOutput := executeClientAction(videoURL, "bootstrapGetCurrentVideo()")
|
|
return models.ParseUpload(actionOutput)
|
|
}
|