io.github.honoriuss.blossom.interfaces.ITrackingParameterRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tracking-blossom Show documentation
Show all versions of tracking-blossom Show documentation
Track your app nice and convenient
package io.github.honoriuss.blossom.interfaces;
import java.util.List;
public interface ITrackingParameterRegistry {
@Deprecated
default void register(ITrackingParameterProvider trackingParameterProvider) {
}
List getTrackingParameterProviders();
}