$seek
$seek will seek to a specified position of a song.
Usage
$seek[duration]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| duration | string | song position, example: 1m 5s | true | 
Example(s)
This will seek to a specified position of a song
1client.command({2    name: 'seek',3    code: `4    $seek[1m 5s]5  `6});This will seek to a specified position of a song
1module.exports = [{2    name: "seek",3    code: `4    $seek[1m 5s]5  `6}]