From 748cdbf4880d830fd794e92856e8c35a46e4f884 Mon Sep 17 00:00:00 2001 From: vnugent Date: Mon, 11 Mar 2024 21:21:18 -0400 Subject: feat(app): #1 update libs & add curl support --- back-end/src/PlatformFeatures/ISystemApp.cs | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 back-end/src/PlatformFeatures/ISystemApp.cs (limited to 'back-end/src/PlatformFeatures/ISystemApp.cs') diff --git a/back-end/src/PlatformFeatures/ISystemApp.cs b/back-end/src/PlatformFeatures/ISystemApp.cs new file mode 100644 index 0000000..11d15f1 --- /dev/null +++ b/back-end/src/PlatformFeatures/ISystemApp.cs @@ -0,0 +1,31 @@ +// Copyright (C) 2024 Vaughn Nugent +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU Affero General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Affero General Public License for more details. +// +// You should have received a copy of the GNU Affero General Public License +// along with this program. If not, see . + + +using System.Threading.Tasks; +using System.Threading; + +namespace SimpleBookmark.PlatformFeatures +{ + internal interface ISystemApp + { + /// + /// Gets a value indicating if the curl application is available + /// on the local system. + /// + /// True if the curl exe is available on the local system, false otherwise + Task TestIsAvailable(CancellationToken cancellation); + } +} -- cgit