using FluentResults; namespace pgLabII.PgUtils.ConnectionStrings; public interface IPqConnectionStringTokenizer { bool IsEof { get; } Result GetKeyword(); Result ConsumeEquals(); Result GetValue(); }