Skip to content

Commit

Permalink
Use hosted API (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
vocksel authored Jan 17, 2024
1 parent 591c18a commit cf819b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugin/src/constants.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
return {
PLUGIN_NAME = "VSCode Theme Importer",

SERVER_URL = "http://localhost:8080",
SERVER_URL = "https://swatch.vocksel.com",

--[[
This object maps Roblox Studio script editor colors to an array of
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/fetchExtensionThemes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ local Root = script:FindFirstAncestor("rbxtheme")
local HttpService = game:GetService("HttpService")

local createUrl = require(Root.createUrl)
local constants = require(Root.constants)
local request = require(Root.request)
local types = require(Root.types)
local constants = require(Root.constants)

local function fetchExtensionThemes(extension: types.PublishedExtension, version: string)
return request({
Expand Down

0 comments on commit cf819b0

Please sign in to comment.