← Back to issue list

Improve API naming and scoping

View original Github issue

Metadata

Project
craft-application
Number
#573
Type
issue
State
open
Author
sergiusens
Labels
Created
2024-12-02 12:00:11+00:00
Updated
2025-05-23 17:26:37+00:00
Closed

Current evaluation

No evaluation has been recorded for this issue yet.

Issue body

### What needs to get done Do not be repetitive on names ``` craft_application.services.package.PackageService ``` Can be refactored to ``` craft_application.services.package.Package ``` or ``` craft_application.services._package.Package ``` and accessed as ``` craft_application.services.Package ``` or ``` from craft_application import services services.Package ``` ### Why it needs to get done - Easier use of the API - Less repetition - Better Scoping

Evaluation history

No evaluation history available.