using Dipper.Alioth.Starlets; using Microsoft.AspNetCore.Mvc.ApplicationParts; namespace Dipper.Alioth; public class ManagerStarlet : IStarlet { private ApplicationPartManager _partManager; public ManagerStarlet(ApplicationPartManager partManager) { _partManager = partManager; } public IEnumerable GetList() { return _partManager.ApplicationParts.Select(x => x.Name); } }