using System; namespace GitHub.Actions.Expressions { /// /// Used to mask secrets from trace messages and exception messages /// public interface ISecretMasker { String MaskSecrets(String input); } }