From 8e85be96a154b371b4cf1fb1924155d96150f949 Mon Sep 17 00:00:00 2001 From: Pauline Date: Wed, 20 Dec 2023 01:58:22 -0500 Subject: chore(lint): bump deps and fix linting/format --- apps/website/src/components/base/CodeBlock.astro | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 apps/website/src/components/base/CodeBlock.astro (limited to 'apps/website/src/components/base/CodeBlock.astro') diff --git a/apps/website/src/components/base/CodeBlock.astro b/apps/website/src/components/base/CodeBlock.astro deleted file mode 100644 index fd2cdd6..0000000 --- a/apps/website/src/components/base/CodeBlock.astro +++ /dev/null @@ -1,21 +0,0 @@ ---- - ---- - -
-	
-	public class MyConfig {
-	
-	    @Switch(name = "Sub Switch", type = OptionType.SWITCH)
-	    public static boolean subSwitch = false;
-	
-	    public MyConfig() {
-	        super(new Mod("My Mod", ModType.UTIL_QOL), "config.json");
-	
-	        addDependency("subSwitch", () -> {
-	            // Do stuff here!
-	        });
-	    }
-	
-	}
-
-- cgit