Revert "Rename services to Client/Server and update refs"

This commit is contained in:
Shaun Walker
2026-02-11 13:52:35 -05:00
committed by GitHub
parent 831bc31e06
commit 69fc1c9895
6 changed files with 13 additions and 12 deletions

View File

@@ -8,9 +8,9 @@ using Oqtane.Shared;
namespace [Owner].Module.[Module].Services
{
public class Client[Module]Service : ServiceBase, I[Module]Service
public class [Module]Service : ServiceBase, I[Module]Service
{
public Client[Module]Service(HttpClient http, SiteState siteState) : base(http, siteState) { }
public [Module]Service(HttpClient http, SiteState siteState) : base(http, siteState) { }
private string Apiurl => CreateApiUrl("[Module]");