> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baobun.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Syntax

> This resource explains the syntax of commands.

### Syntax for durations

Sometimes a command requires a `time`, for example the command for starting giveaways.
The following units can be used for a duration:

* `s` seconds
* `m` minutes
* `h` hours
* `d` days
* `w` weeks
* `y` years

Not only that, you can also combine the units, for example `7d12h` would equal a duration of 7 days and 12 hours.

<CodeGroup>
  ```css Correct Syntax ✅ theme={null}
  50s
  10m
  7d
  12h5m
  1w2d
  1y2w20m
  ```

  ```css Incorrect Syntax ❌ theme={null}
  50 seconds
  10minutes
  7 days 1w
  12hours 5 minutes
  ```
</CodeGroup>
