GG EZ, ima go piss
This commit is contained in:
24
Random-Project.sln
Normal file
24
Random-Project.sln
Normal file
@@ -0,0 +1,24 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TermEngine", "TermEngine\TermEngine.csproj", "{2E1CE255-6C2B-3F7D-A311-6248EEEBF697}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{2E1CE255-6C2B-3F7D-A311-6248EEEBF697}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2E1CE255-6C2B-3F7D-A311-6248EEEBF697}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2E1CE255-6C2B-3F7D-A311-6248EEEBF697}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2E1CE255-6C2B-3F7D-A311-6248EEEBF697}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {3F5D4C2B-BB63-46AC-A98C-4B1E46BAA69F}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
54
TermEngine/CommandInterpreter.cs
Normal file
54
TermEngine/CommandInterpreter.cs
Normal file
@@ -0,0 +1,54 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
|
||||
public class CommandInterpreter
|
||||
{
|
||||
public readonly Dictionary<string, ICommand> _commands = new();
|
||||
|
||||
public CommandInterpreter()
|
||||
{
|
||||
|
||||
RegisterCommand(new GreetCommand());
|
||||
RegisterCommand(new HelpCommand(this));
|
||||
|
||||
}
|
||||
public void RegisterCommand(ICommand command)
|
||||
{
|
||||
|
||||
_commands[command.Name.ToLower()] = command;
|
||||
|
||||
}
|
||||
|
||||
public void Execute(string input)
|
||||
{
|
||||
string[] parts = input.Split(" ", StringSplitOptions.RemoveEmptyEntries);
|
||||
if (parts.Length == 0) return;
|
||||
|
||||
string commandName = parts[0].ToLower();
|
||||
string[] args = parts.Length > 1 ? parts[1..] : new string[0];
|
||||
|
||||
if (_commands.TryGetValue(commandName, out var command))
|
||||
{
|
||||
|
||||
command.Execute(args);
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("Err - uknown Command : '{commandName}'. Type help For a list of commands");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
public IEnumerable<ICommand> GetAllCommands()
|
||||
{
|
||||
|
||||
return _commands.Values;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
22
TermEngine/GreetCommand.cs
Normal file
22
TermEngine/GreetCommand.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
|
||||
public class GreetCommand : ICommand
|
||||
{
|
||||
public string Name => "greet";
|
||||
public string Description => "greets someone.. args [name]";
|
||||
|
||||
public void Execute(string[] args)
|
||||
{
|
||||
|
||||
if (args.Length == 0)
|
||||
{
|
||||
|
||||
Console.WriteLine(Description);
|
||||
return;
|
||||
|
||||
}
|
||||
|
||||
Console.WriteLine("Greetings , " + args[0]);
|
||||
|
||||
}
|
||||
}
|
||||
27
TermEngine/HelpCommand.cs
Normal file
27
TermEngine/HelpCommand.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
public class HelpCommand : ICommand
|
||||
{
|
||||
private readonly CommandInterpreter _interpreter;
|
||||
|
||||
public HelpCommand(CommandInterpreter interpreter)
|
||||
{
|
||||
|
||||
_interpreter = interpreter;
|
||||
|
||||
}
|
||||
public string Name => "help";
|
||||
public String Description => "Shows the Help pop Up";
|
||||
|
||||
public void Execute(string[] args)
|
||||
{
|
||||
Console.WriteLine("Avaliable Commands:");
|
||||
foreach (var cmd in _interpreter.GetAllCommands())
|
||||
{
|
||||
|
||||
Console.WriteLine($"Command : {cmd.Name} | {cmd.Description}");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
8
TermEngine/ICOmmand.cs
Normal file
8
TermEngine/ICOmmand.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
public interface ICommand
|
||||
{
|
||||
|
||||
string Name { get; }
|
||||
string Description { get; }
|
||||
void Execute(string[] args);
|
||||
|
||||
}
|
||||
35
TermEngine/Program.cs
Normal file
35
TermEngine/Program.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace TermApp
|
||||
{
|
||||
class Program
|
||||
{
|
||||
|
||||
static void Main(string[] args)
|
||||
{
|
||||
|
||||
Console.WriteLine("Hello, Works!");
|
||||
|
||||
CommandInterpreter interpreter = new CommandInterpreter();
|
||||
Console.WriteLine("Type help to see avaliable Commands :.) or type exit to quit");
|
||||
|
||||
|
||||
while (true)
|
||||
{
|
||||
|
||||
Console.Write("Input >");
|
||||
string input = Console.ReadLine();
|
||||
if (string.IsNullOrWhiteSpace(input)) continue;
|
||||
if (input.ToLower() == "exit") break;
|
||||
|
||||
|
||||
interpreter.Execute(input);
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
10
TermEngine/TermEngine.csproj
Normal file
10
TermEngine/TermEngine.csproj
Normal file
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
BIN
TermEngine/bin/Debug/net8.0/TermEngine
Executable file
BIN
TermEngine/bin/Debug/net8.0/TermEngine
Executable file
Binary file not shown.
23
TermEngine/bin/Debug/net8.0/TermEngine.deps.json
Normal file
23
TermEngine/bin/Debug/net8.0/TermEngine.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"TermEngine/1.0.0": {
|
||||
"runtime": {
|
||||
"TermEngine.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TermEngine/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
TermEngine/bin/Debug/net8.0/TermEngine.dll
Normal file
BIN
TermEngine/bin/Debug/net8.0/TermEngine.dll
Normal file
Binary file not shown.
BIN
TermEngine/bin/Debug/net8.0/TermEngine.pdb
Normal file
BIN
TermEngine/bin/Debug/net8.0/TermEngine.pdb
Normal file
Binary file not shown.
12
TermEngine/bin/Debug/net8.0/TermEngine.runtimeconfig.json
Normal file
12
TermEngine/bin/Debug/net8.0/TermEngine.runtimeconfig.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
22
TermEngine/obj/Debug/net8.0/TermEngine.AssemblyInfo.cs
Normal file
22
TermEngine/obj/Debug/net8.0/TermEngine.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("TermEngine")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fd78d9283e191920ee4f6e700fc03391a8880f43")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("TermEngine")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("TermEngine")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
432712ba9dc98f037959cf0668caa1627ade9f0aa69473645068c6ea52208868
|
||||
@@ -0,0 +1,13 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = TermEngine
|
||||
build_property.ProjectDir = /media/kevin/Vr Files/Random-Project/TermEngine/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
8
TermEngine/obj/Debug/net8.0/TermEngine.GlobalUsings.g.cs
Normal file
8
TermEngine/obj/Debug/net8.0/TermEngine.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
BIN
TermEngine/obj/Debug/net8.0/TermEngine.assets.cache
Normal file
BIN
TermEngine/obj/Debug/net8.0/TermEngine.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
4fba7de9be587e6bc37da5c47243a26c97f753def2985a170b262675dd805d5f
|
||||
@@ -0,0 +1,14 @@
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/bin/Debug/net8.0/TermEngine
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/bin/Debug/net8.0/TermEngine.deps.json
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/bin/Debug/net8.0/TermEngine.runtimeconfig.json
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/bin/Debug/net8.0/TermEngine.dll
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/bin/Debug/net8.0/TermEngine.pdb
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.AssemblyInfoInputs.cache
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.AssemblyInfo.cs
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.csproj.CoreCompileInputs.cache
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.dll
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/refint/TermEngine.dll
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.pdb
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/TermEngine.genruntimeconfig.cache
|
||||
/media/kevin/Vr Files/Random-Project/TermEngine/obj/Debug/net8.0/ref/TermEngine.dll
|
||||
BIN
TermEngine/obj/Debug/net8.0/TermEngine.dll
Normal file
BIN
TermEngine/obj/Debug/net8.0/TermEngine.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
7dbdf368ee4ed9dd160116a4ec9cf464a5e24e5ec7e16a587807e5fb5f39987d
|
||||
BIN
TermEngine/obj/Debug/net8.0/TermEngine.pdb
Normal file
BIN
TermEngine/obj/Debug/net8.0/TermEngine.pdb
Normal file
Binary file not shown.
BIN
TermEngine/obj/Debug/net8.0/apphost
Executable file
BIN
TermEngine/obj/Debug/net8.0/apphost
Executable file
Binary file not shown.
BIN
TermEngine/obj/Debug/net8.0/ref/TermEngine.dll
Normal file
BIN
TermEngine/obj/Debug/net8.0/ref/TermEngine.dll
Normal file
Binary file not shown.
BIN
TermEngine/obj/Debug/net8.0/refint/TermEngine.dll
Normal file
BIN
TermEngine/obj/Debug/net8.0/refint/TermEngine.dll
Normal file
Binary file not shown.
66
TermEngine/obj/TermEngine.csproj.nuget.dgspec.json
Normal file
66
TermEngine/obj/TermEngine.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj",
|
||||
"projectName": "TermEngine",
|
||||
"projectPath": "/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj",
|
||||
"packagesPath": "/home/kevin/.nuget/packages/",
|
||||
"outputPath": "/media/kevin/Vr Files/Random-Project/TermEngine/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/kevin/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/home/kevin/.dotnet/sdk/8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
TermEngine/obj/TermEngine.csproj.nuget.g.props
Normal file
15
TermEngine/obj/TermEngine.csproj.nuget.g.props
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/kevin/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/kevin/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/kevin/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
TermEngine/obj/TermEngine.csproj.nuget.g.targets
Normal file
2
TermEngine/obj/TermEngine.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
71
TermEngine/obj/project.assets.json
Normal file
71
TermEngine/obj/project.assets.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net8.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/kevin/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj",
|
||||
"projectName": "TermEngine",
|
||||
"projectPath": "/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj",
|
||||
"packagesPath": "/home/kevin/.nuget/packages/",
|
||||
"outputPath": "/media/kevin/Vr Files/Random-Project/TermEngine/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/kevin/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/home/kevin/.dotnet/sdk/8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
TermEngine/obj/project.nuget.cache
Normal file
8
TermEngine/obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "HBGrX670slw=",
|
||||
"success": true,
|
||||
"projectFilePath": "/media/kevin/Vr Files/Random-Project/TermEngine/TermEngine.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user