diff --git a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/LRUCache.cs b/Props-Modules/Props.Shop/AliExpressModule/LRUCache.cs similarity index 100% rename from MultiShop-Modules/MultiShop.Shop/AliExpressModule/LRUCache.cs rename to Props-Modules/Props.Shop/AliExpressModule/LRUCache.cs diff --git a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/MultiShop.Shop.AliExpressModule.csproj b/Props-Modules/Props.Shop/AliExpressModule/Props.Shop.AliExpressModule.csproj similarity index 75% rename from MultiShop-Modules/MultiShop.Shop/AliExpressModule/MultiShop.Shop.AliExpressModule.csproj rename to Props-Modules/Props.Shop/AliExpressModule/Props.Shop.AliExpressModule.csproj index cbe1ea9..cdd3161 100644 --- a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/MultiShop.Shop.AliExpressModule.csproj +++ b/Props-Modules/Props.Shop/AliExpressModule/Props.Shop.AliExpressModule.csproj @@ -1,7 +1,7 @@ - + diff --git a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/Shop.cs b/Props-Modules/Props.Shop/AliExpressModule/Shop.cs similarity index 96% rename from MultiShop-Modules/MultiShop.Shop/AliExpressModule/Shop.cs rename to Props-Modules/Props.Shop/AliExpressModule/Shop.cs index 64a4e9a..8ec59ba 100644 --- a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/Shop.cs +++ b/Props-Modules/Props.Shop/AliExpressModule/Shop.cs @@ -10,10 +10,10 @@ using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using GameServiceWarden.Core.Collection; -using MultiShop.Shop.Framework; +using Props.Shop.Framework; using SimpleLogger; -namespace MultiShop.Shop.AliExpressModule +namespace Props.Shop.AliExpressModule { public class Shop : IShop { diff --git a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/ShopEnumerator.cs b/Props-Modules/Props.Shop/AliExpressModule/ShopEnumerator.cs similarity index 99% rename from MultiShop-Modules/MultiShop.Shop/AliExpressModule/ShopEnumerator.cs rename to Props-Modules/Props.Shop/AliExpressModule/ShopEnumerator.cs index 691ca51..60a2f47 100644 --- a/MultiShop-Modules/MultiShop.Shop/AliExpressModule/ShopEnumerator.cs +++ b/Props-Modules/Props.Shop/AliExpressModule/ShopEnumerator.cs @@ -7,10 +7,10 @@ using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; using GameServiceWarden.Core.Collection; -using MultiShop.Shop.Framework; +using Props.Shop.Framework; using SimpleLogger; -namespace MultiShop.Shop.AliExpressModule +namespace Props.Shop.AliExpressModule { class ShopEnumerator : IAsyncEnumerator { diff --git a/MultiShop-Modules/MultiShop.Shop/BanggoodModule/MultiShop.Shop.BanggoodModule.csproj b/Props-Modules/Props.Shop/BanggoodModule/Props.Shop.BanggoodModule.csproj similarity index 81% rename from MultiShop-Modules/MultiShop.Shop/BanggoodModule/MultiShop.Shop.BanggoodModule.csproj rename to Props-Modules/Props.Shop/BanggoodModule/Props.Shop.BanggoodModule.csproj index 1100ac5..d2f3be9 100644 --- a/MultiShop-Modules/MultiShop.Shop/BanggoodModule/MultiShop.Shop.BanggoodModule.csproj +++ b/Props-Modules/Props.Shop/BanggoodModule/Props.Shop.BanggoodModule.csproj @@ -1,7 +1,7 @@ - + diff --git a/MultiShop-Modules/MultiShop.Shop/BanggoodModule/Shop.cs b/Props-Modules/Props.Shop/BanggoodModule/Shop.cs similarity index 95% rename from MultiShop-Modules/MultiShop.Shop/BanggoodModule/Shop.cs rename to Props-Modules/Props.Shop/BanggoodModule/Shop.cs index 73becbc..47436c8 100644 --- a/MultiShop-Modules/MultiShop.Shop/BanggoodModule/Shop.cs +++ b/Props-Modules/Props.Shop/BanggoodModule/Shop.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.Net.Http; using System.Runtime.CompilerServices; using System.Threading; -using MultiShop.Shop.Framework; +using Props.Shop.Framework; -namespace MultiShop.Shop.BanggoodModule +namespace Props.Shop.BanggoodModule { public class Shop : IShop { diff --git a/MultiShop-Modules/MultiShop.Shop/BanggoodModule/ShopEnumerator.cs b/Props-Modules/Props.Shop/BanggoodModule/ShopEnumerator.cs similarity index 98% rename from MultiShop-Modules/MultiShop.Shop/BanggoodModule/ShopEnumerator.cs rename to Props-Modules/Props.Shop/BanggoodModule/ShopEnumerator.cs index 8b680c7..c49511a 100644 --- a/MultiShop-Modules/MultiShop.Shop/BanggoodModule/ShopEnumerator.cs +++ b/Props-Modules/Props.Shop/BanggoodModule/ShopEnumerator.cs @@ -9,10 +9,10 @@ using System.Threading; using System.Threading.Tasks; using System.Xml; using HtmlAgilityPack; -using MultiShop.Shop.Framework; +using Props.Shop.Framework; using SimpleLogger; -namespace MultiShop.Shop.BanggoodModule +namespace Props.Shop.BanggoodModule { class ShopEnumerator : IAsyncEnumerator { diff --git a/MultiShop-Modules/MultiShop.Shop/Framework/Currency.cs b/Props-Modules/Props.Shop/Framework/Currency.cs similarity index 65% rename from MultiShop-Modules/MultiShop.Shop/Framework/Currency.cs rename to Props-Modules/Props.Shop/Framework/Currency.cs index 72cb998..3525fe8 100644 --- a/MultiShop-Modules/MultiShop.Shop/Framework/Currency.cs +++ b/Props-Modules/Props.Shop/Framework/Currency.cs @@ -1,4 +1,4 @@ -namespace MultiShop.Shop.Framework +namespace Props.Shop.Framework { public enum Currency { diff --git a/MultiShop-Modules/MultiShop.Shop/Framework/IShop.cs b/Props-Modules/Props.Shop/Framework/IShop.cs similarity index 92% rename from MultiShop-Modules/MultiShop.Shop/Framework/IShop.cs rename to Props-Modules/Props.Shop/Framework/IShop.cs index 9ad25d1..9f5453a 100644 --- a/MultiShop-Modules/MultiShop.Shop/Framework/IShop.cs +++ b/Props-Modules/Props.Shop/Framework/IShop.cs @@ -4,7 +4,7 @@ using System.Net.Http; using System.Threading; using System.Threading.Tasks; -namespace MultiShop.Shop.Framework +namespace Props.Shop.Framework { public interface IShop : IAsyncEnumerable, IDisposable { diff --git a/MultiShop-Modules/MultiShop.Shop/Framework/ProductListing.cs b/Props-Modules/Props.Shop/Framework/ProductListing.cs similarity index 93% rename from MultiShop-Modules/MultiShop.Shop/Framework/ProductListing.cs rename to Props-Modules/Props.Shop/Framework/ProductListing.cs index 12c0f2d..7d5408d 100644 --- a/MultiShop-Modules/MultiShop.Shop/Framework/ProductListing.cs +++ b/Props-Modules/Props.Shop/Framework/ProductListing.cs @@ -1,4 +1,4 @@ -namespace MultiShop.Shop.Framework +namespace Props.Shop.Framework { public struct ProductListing { diff --git a/MultiShop-Modules/MultiShop.Shop/Framework/MultiShop.Shop.Framework.csproj b/Props-Modules/Props.Shop/Framework/Props.Shop.Framework.csproj similarity index 100% rename from MultiShop-Modules/MultiShop.Shop/Framework/MultiShop.Shop.Framework.csproj rename to Props-Modules/Props.Shop/Framework/Props.Shop.Framework.csproj diff --git a/MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/MultiShop.Shop.BanggoodModule.Tests.csproj b/Props-Modules/test/Props.Shop/AliExpressModule.Tests/Props.Shop.AliExpressModule.Tests.csproj similarity index 89% rename from MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/MultiShop.Shop.BanggoodModule.Tests.csproj rename to Props-Modules/test/Props.Shop/AliExpressModule.Tests/Props.Shop.AliExpressModule.Tests.csproj index fb3c389..f515f6f 100644 --- a/MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/MultiShop.Shop.BanggoodModule.Tests.csproj +++ b/Props-Modules/test/Props.Shop/AliExpressModule.Tests/Props.Shop.AliExpressModule.Tests.csproj @@ -20,8 +20,8 @@ - + diff --git a/MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/ShopTest.cs b/Props-Modules/test/Props.Shop/AliExpressModule.Tests/ShopTest.cs similarity index 95% rename from MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/ShopTest.cs rename to Props-Modules/test/Props.Shop/AliExpressModule.Tests/ShopTest.cs index aa43c06..0d77d14 100644 --- a/MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/ShopTest.cs +++ b/Props-Modules/test/Props.Shop/AliExpressModule.Tests/ShopTest.cs @@ -1,9 +1,9 @@ -using MultiShop.Shop.Framework; +using Props.Shop.Framework; using SimpleLogger; using Xunit; using Xunit.Abstractions; -namespace MultiShop.Shop.AliExpressModule.Tests +namespace Props.Shop.AliExpressModule.Tests { public class ShopTest { diff --git a/MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/XUnitLogger.cs b/Props-Modules/test/Props.Shop/AliExpressModule.Tests/XUnitLogger.cs similarity index 94% rename from MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/XUnitLogger.cs rename to Props-Modules/test/Props.Shop/AliExpressModule.Tests/XUnitLogger.cs index 94d4c04..edf9cc9 100644 --- a/MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/XUnitLogger.cs +++ b/Props-Modules/test/Props.Shop/AliExpressModule.Tests/XUnitLogger.cs @@ -2,7 +2,7 @@ using System; using SimpleLogger; using Xunit.Abstractions; -namespace MultiShop.Shop.BanggoodModule +namespace Props.Shop.AliExpressModule { public class XUnitLogger : ILogReceiver { diff --git a/MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/MultiShop.Shop.AliExpressModule.Tests.csproj b/Props-Modules/test/Props.Shop/BanggoodModule.Tests/Props.Shop.BanggoodModule.Tests.csproj similarity index 88% rename from MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/MultiShop.Shop.AliExpressModule.Tests.csproj rename to Props-Modules/test/Props.Shop/BanggoodModule.Tests/Props.Shop.BanggoodModule.Tests.csproj index 65a441f..0975c55 100644 --- a/MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/MultiShop.Shop.AliExpressModule.Tests.csproj +++ b/Props-Modules/test/Props.Shop/BanggoodModule.Tests/Props.Shop.BanggoodModule.Tests.csproj @@ -20,8 +20,8 @@ + - diff --git a/MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/ShopTest.cs b/Props-Modules/test/Props.Shop/BanggoodModule.Tests/ShopTest.cs similarity index 91% rename from MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/ShopTest.cs rename to Props-Modules/test/Props.Shop/BanggoodModule.Tests/ShopTest.cs index 708d56e..7dcb54d 100644 --- a/MultiShop-Modules/test/MultiShop.Shop/BanggoodModule.Tests/ShopTest.cs +++ b/Props-Modules/test/Props.Shop/BanggoodModule.Tests/ShopTest.cs @@ -1,9 +1,9 @@ -using MultiShop.Shop.Framework; +using Props.Shop.Framework; using SimpleLogger; using Xunit; using Xunit.Abstractions; -namespace MultiShop.Shop.BanggoodModule.Tests +namespace Props.Shop.BanggoodModule.Tests { public class ShopTest { diff --git a/MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/XUnitLogger.cs b/Props-Modules/test/Props.Shop/BanggoodModule.Tests/XUnitLogger.cs similarity index 94% rename from MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/XUnitLogger.cs rename to Props-Modules/test/Props.Shop/BanggoodModule.Tests/XUnitLogger.cs index 1512745..53ecfb1 100644 --- a/MultiShop-Modules/test/MultiShop.Shop/AliExpressModule.Tests/XUnitLogger.cs +++ b/Props-Modules/test/Props.Shop/BanggoodModule.Tests/XUnitLogger.cs @@ -2,7 +2,7 @@ using System; using SimpleLogger; using Xunit.Abstractions; -namespace MultiShop.Shop.AliExpressModule +namespace Props.Shop.BanggoodModule { public class XUnitLogger : ILogReceiver { diff --git a/MultiShop/.vscode/launch.json b/Props/.vscode/launch.json similarity index 98% rename from MultiShop/.vscode/launch.json rename to Props/.vscode/launch.json index c02e6e7..55736a1 100644 --- a/MultiShop/.vscode/launch.json +++ b/Props/.vscode/launch.json @@ -17,7 +17,7 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/server/bin/Debug/net5.0/MultiShop.dll", + "program": "${workspaceFolder}/server/bin/Debug/net5.0/Props.dll", "args": [], "cwd": "${workspaceFolder}/server", "stopAtEntry": false, diff --git a/MultiShop/.vscode/settings.json b/Props/.vscode/settings.json similarity index 100% rename from MultiShop/.vscode/settings.json rename to Props/.vscode/settings.json diff --git a/MultiShop/.vscode/tasks.json b/Props/.vscode/tasks.json similarity index 89% rename from MultiShop/.vscode/tasks.json rename to Props/.vscode/tasks.json index 40c5adf..a6df350 100644 --- a/MultiShop/.vscode/tasks.json +++ b/Props/.vscode/tasks.json @@ -7,7 +7,7 @@ "type": "process", "args": [ "build", - "${workspaceFolder}/server/MultiShop.csproj", + "${workspaceFolder}/server/Props.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -19,7 +19,7 @@ "type": "process", "args": [ "publish", - "${workspaceFolder}/server/MultiShop.csproj", + "${workspaceFolder}/server/Props.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -41,7 +41,7 @@ "args": [ "watch", "-p", - "${workspaceFolder}/server/MultiShop.csproj", + "${workspaceFolder}/server/Props.csproj", "run" ], "problemMatcher": ["$msCompile"] diff --git a/MultiShop/client/.browserslistrc b/Props/client/.browserslistrc similarity index 100% rename from MultiShop/client/.browserslistrc rename to Props/client/.browserslistrc diff --git a/MultiShop/client/.editorconfig b/Props/client/.editorconfig similarity index 100% rename from MultiShop/client/.editorconfig rename to Props/client/.editorconfig diff --git a/MultiShop/client/.eslintrc.js b/Props/client/.eslintrc.js similarity index 100% rename from MultiShop/client/.eslintrc.js rename to Props/client/.eslintrc.js diff --git a/MultiShop/client/.gitignore b/Props/client/.gitignore similarity index 100% rename from MultiShop/client/.gitignore rename to Props/client/.gitignore diff --git a/MultiShop/client/README.md b/Props/client/README.md similarity index 97% rename from MultiShop/client/README.md rename to Props/client/README.md index 9068b78..3685bbf 100644 --- a/MultiShop/client/README.md +++ b/Props/client/README.md @@ -1,4 +1,4 @@ -# multishop +# props ## Project setup ``` diff --git a/MultiShop/client/babel.config.js b/Props/client/babel.config.js similarity index 100% rename from MultiShop/client/babel.config.js rename to Props/client/babel.config.js diff --git a/MultiShop/client/jsconfig.json b/Props/client/jsconfig.json similarity index 100% rename from MultiShop/client/jsconfig.json rename to Props/client/jsconfig.json diff --git a/MultiShop/client/package-lock.json b/Props/client/package-lock.json similarity index 99% rename from MultiShop/client/package-lock.json rename to Props/client/package-lock.json index 4c2a7a9..03830e1 100644 --- a/MultiShop/client/package-lock.json +++ b/Props/client/package-lock.json @@ -1,5 +1,5 @@ { - "name": "multishop", + "name": "props", "version": "0.1.0", "lockfileVersion": 1, "requires": true, diff --git a/MultiShop/client/package.json b/Props/client/package.json similarity index 98% rename from MultiShop/client/package.json rename to Props/client/package.json index bdeebbe..92a1b1b 100644 --- a/MultiShop/client/package.json +++ b/Props/client/package.json @@ -1,5 +1,5 @@ { - "name": "multishop", + "name": "props", "version": "0.1.0", "private": true, "scripts": { diff --git a/MultiShop/client/public/authentication/callback-handler.js b/Props/client/public/authentication/callback-handler.js similarity index 94% rename from MultiShop/client/public/authentication/callback-handler.js rename to Props/client/public/authentication/callback-handler.js index 6fc0d8f..e47465c 100644 --- a/MultiShop/client/public/authentication/callback-handler.js +++ b/Props/client/public/authentication/callback-handler.js @@ -2,7 +2,7 @@ import { UserManager, WebStorageStateStore } from "oidc-client"; const userManager = new UserManager({ authority: window.location.origin, - client_id: "MultiShop", + client_id: "Props", redirect_uri: window.location.origin + "/authentication/login-callback", post_logout_redirect_uri: window.location.origin + "/authentication/logout-callback", response_type: "code", diff --git a/MultiShop/client/public/authentication/silent-login-callback.html b/Props/client/public/authentication/silent-login-callback.html similarity index 100% rename from MultiShop/client/public/authentication/silent-login-callback.html rename to Props/client/public/authentication/silent-login-callback.html diff --git a/MultiShop/client/public/favicon.ico b/Props/client/public/favicon.ico similarity index 100% rename from MultiShop/client/public/favicon.ico rename to Props/client/public/favicon.ico diff --git a/MultiShop/client/public/img/icons/android-chrome-192x192.png b/Props/client/public/img/icons/android-chrome-192x192.png similarity index 100% rename from MultiShop/client/public/img/icons/android-chrome-192x192.png rename to Props/client/public/img/icons/android-chrome-192x192.png diff --git a/MultiShop/client/public/img/icons/android-chrome-512x512.png b/Props/client/public/img/icons/android-chrome-512x512.png similarity index 100% rename from MultiShop/client/public/img/icons/android-chrome-512x512.png rename to Props/client/public/img/icons/android-chrome-512x512.png diff --git a/MultiShop/client/public/img/icons/android-chrome-maskable-192x192.png b/Props/client/public/img/icons/android-chrome-maskable-192x192.png similarity index 100% rename from MultiShop/client/public/img/icons/android-chrome-maskable-192x192.png rename to Props/client/public/img/icons/android-chrome-maskable-192x192.png diff --git a/MultiShop/client/public/img/icons/android-chrome-maskable-512x512.png b/Props/client/public/img/icons/android-chrome-maskable-512x512.png similarity index 100% rename from MultiShop/client/public/img/icons/android-chrome-maskable-512x512.png rename to Props/client/public/img/icons/android-chrome-maskable-512x512.png diff --git a/MultiShop/client/public/img/icons/apple-touch-icon-120x120.png b/Props/client/public/img/icons/apple-touch-icon-120x120.png similarity index 100% rename from MultiShop/client/public/img/icons/apple-touch-icon-120x120.png rename to Props/client/public/img/icons/apple-touch-icon-120x120.png diff --git a/MultiShop/client/public/img/icons/apple-touch-icon-152x152.png b/Props/client/public/img/icons/apple-touch-icon-152x152.png similarity index 100% rename from MultiShop/client/public/img/icons/apple-touch-icon-152x152.png rename to Props/client/public/img/icons/apple-touch-icon-152x152.png diff --git a/MultiShop/client/public/img/icons/apple-touch-icon-180x180.png b/Props/client/public/img/icons/apple-touch-icon-180x180.png similarity index 100% rename from MultiShop/client/public/img/icons/apple-touch-icon-180x180.png rename to Props/client/public/img/icons/apple-touch-icon-180x180.png diff --git a/MultiShop/client/public/img/icons/apple-touch-icon-60x60.png b/Props/client/public/img/icons/apple-touch-icon-60x60.png similarity index 100% rename from MultiShop/client/public/img/icons/apple-touch-icon-60x60.png rename to Props/client/public/img/icons/apple-touch-icon-60x60.png diff --git a/MultiShop/client/public/img/icons/apple-touch-icon-76x76.png b/Props/client/public/img/icons/apple-touch-icon-76x76.png similarity index 100% rename from MultiShop/client/public/img/icons/apple-touch-icon-76x76.png rename to Props/client/public/img/icons/apple-touch-icon-76x76.png diff --git a/MultiShop/client/public/img/icons/apple-touch-icon.png b/Props/client/public/img/icons/apple-touch-icon.png similarity index 100% rename from MultiShop/client/public/img/icons/apple-touch-icon.png rename to Props/client/public/img/icons/apple-touch-icon.png diff --git a/MultiShop/client/public/img/icons/favicon-16x16.png b/Props/client/public/img/icons/favicon-16x16.png similarity index 100% rename from MultiShop/client/public/img/icons/favicon-16x16.png rename to Props/client/public/img/icons/favicon-16x16.png diff --git a/MultiShop/client/public/img/icons/favicon-32x32.png b/Props/client/public/img/icons/favicon-32x32.png similarity index 100% rename from MultiShop/client/public/img/icons/favicon-32x32.png rename to Props/client/public/img/icons/favicon-32x32.png diff --git a/MultiShop/client/public/img/icons/msapplication-icon-144x144.png b/Props/client/public/img/icons/msapplication-icon-144x144.png similarity index 100% rename from MultiShop/client/public/img/icons/msapplication-icon-144x144.png rename to Props/client/public/img/icons/msapplication-icon-144x144.png diff --git a/MultiShop/client/public/img/icons/mstile-150x150.png b/Props/client/public/img/icons/mstile-150x150.png similarity index 100% rename from MultiShop/client/public/img/icons/mstile-150x150.png rename to Props/client/public/img/icons/mstile-150x150.png diff --git a/MultiShop/client/public/img/icons/safari-pinned-tab.svg b/Props/client/public/img/icons/safari-pinned-tab.svg similarity index 100% rename from MultiShop/client/public/img/icons/safari-pinned-tab.svg rename to Props/client/public/img/icons/safari-pinned-tab.svg diff --git a/MultiShop/client/public/index.html b/Props/client/public/index.html similarity index 100% rename from MultiShop/client/public/index.html rename to Props/client/public/index.html diff --git a/MultiShop/client/public/robots.txt b/Props/client/public/robots.txt similarity index 100% rename from MultiShop/client/public/robots.txt rename to Props/client/public/robots.txt diff --git a/MultiShop/client/src/App.vue b/Props/client/src/App.vue similarity index 100% rename from MultiShop/client/src/App.vue rename to Props/client/src/App.vue diff --git a/MultiShop/client/src/assets/images/logo.png b/Props/client/src/assets/images/logo.png similarity index 100% rename from MultiShop/client/src/assets/images/logo.png rename to Props/client/src/assets/images/logo.png diff --git a/MultiShop/client/src/assets/images/logo.svg b/Props/client/src/assets/images/logo.svg similarity index 98% rename from MultiShop/client/src/assets/images/logo.svg rename to Props/client/src/assets/images/logo.svg index 96e7b56..85af66f 100644 --- a/MultiShop/client/src/assets/images/logo.svg +++ b/Props/client/src/assets/images/logo.svg @@ -9,7 +9,7 @@ id="svg5" inkscape:version="1.1 (c68e22c387, 2021-05-23)" sodipodi:docname="logo.svg" - inkscape:export-filename="C:\Users\yunya\Documents\MultiShop\MultiShop\client\src\assets\images\logo.png" + inkscape:export-filename="C:\Users\yunya\Documents\Props\Props\client\src\assets\images\logo.png" inkscape:export-xdpi="96" inkscape:export-ydpi="96" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" diff --git a/MultiShop/client/src/assets/scss/_app-layout.scss b/Props/client/src/assets/scss/_app-layout.scss similarity index 100% rename from MultiShop/client/src/assets/scss/_app-layout.scss rename to Props/client/src/assets/scss/_app-layout.scss diff --git a/MultiShop/client/src/assets/scss/_themer.scss b/Props/client/src/assets/scss/_themer.scss similarity index 100% rename from MultiShop/client/src/assets/scss/_themer.scss rename to Props/client/src/assets/scss/_themer.scss diff --git a/MultiShop/client/src/assets/scss/_variables.scss b/Props/client/src/assets/scss/_variables.scss similarity index 100% rename from MultiShop/client/src/assets/scss/_variables.scss rename to Props/client/src/assets/scss/_variables.scss diff --git a/MultiShop/client/src/assets/scss/main.scss b/Props/client/src/assets/scss/main.scss similarity index 100% rename from MultiShop/client/src/assets/scss/main.scss rename to Props/client/src/assets/scss/main.scss diff --git a/MultiShop/client/src/components/InfoCard.vue b/Props/client/src/components/InfoCard.vue similarity index 100% rename from MultiShop/client/src/components/InfoCard.vue rename to Props/client/src/components/InfoCard.vue diff --git a/MultiShop/client/src/components/ProfileDisplay.vue b/Props/client/src/components/ProfileDisplay.vue similarity index 87% rename from MultiShop/client/src/components/ProfileDisplay.vue rename to Props/client/src/components/ProfileDisplay.vue index aaec5ae..ef8f544 100644 --- a/MultiShop/client/src/components/ProfileDisplay.vue +++ b/Props/client/src/components/ProfileDisplay.vue @@ -1,5 +1,5 @@