Files
Moonlight/Moonlight.ApiServer/Services/BundleService.cs
ChiaraBm e63a3db8b9 Added css bundle api. Improved css bundling code
I made the code cleaner as requested @Masu-Baumgartner  :>
2024-12-10 21:25:46 +01:00

11 lines
256 B
C#

namespace Moonlight.ApiServer.Services;
public class BundleService
{
private readonly List<string> CssFiles = new();
public void BundleCss(string path)
=> CssFiles.Add(path);
public IEnumerable<string> GetCssFiles() => CssFiles;
}