12 lines
339 B
Lua
12 lines
339 B
Lua
|
Config = {}
|
||
|
|
||
|
local Framework = "QBCore" -- Supports both ESX and QBCore
|
||
|
local Database = "OXMYSQL" -- Supports both mysql-async and oxmysql
|
||
|
|
||
|
|
||
|
--------- DO NOT MODIFY ---------
|
||
|
|
||
|
Config.Framework = TwoNaShared.Functions.GetFramework(Framework)
|
||
|
Config.Database = TwoNaShared.Functions.GetDatabase(Database)
|
||
|
|
||
|
---------------------------------
|