> For the complete documentation index, see [llms.txt](https://docs.quantum-studios.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.quantum-studios.net/qtm-lib/imports.md).

# Imports

There are 2 ways to import qtm-lib

Using the export in a `server.lua` or `client.lua`

{% code title="Export" %}

```etlua
qtm = exports['qtm-lib']:getSharedObject()
```

{% endcode %}

Import it directly into your script in the `fxmanifest.lua`

{% code title="Import" %}

```etlua
shared_scripts {'@qtm-lib/imports.lua'}
```

{% endcode %}
