Right now, to import and use Objectives, I need to write ```python from autometrics import autometrics, init from autometrics.objectives import Objective, ObjectiveLatency, ObjectivePercentile ``` Could we just change this so you can import everything from the top-level module? E.g., ```python from autometrics import autometrics, init, Objective, ObjectiveLatency, ObjectivePercentile ```