mirror of
https://github.com/pikami/tiktok-dl.git
synced 2025-06-05 14:30:04 +01: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)
|
|
}
|