Skip to content

Commit

Permalink
code format
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnkwlp committed Jul 7, 2024
1 parent 5200450 commit cc86111
Show file tree
Hide file tree
Showing 9 changed files with 1,161 additions and 658 deletions.
508 changes: 503 additions & 5 deletions .editorconfig

Large diffs are not rendered by default.

20 changes: 9 additions & 11 deletions NginxConfigParser/IToken.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
namespace NginxConfigParser
{
public interface IToken
{
}
namespace NginxConfigParser;

public interface IValueToken : IToken
{
string Key { get; }
string Value { get; set; }
string Comment { get; set; }
}
public interface IToken
{
}

public interface IValueToken : IToken
{
string Key { get; }
string Value { get; set; }
string Comment { get; set; }
}
Loading

0 comments on commit cc86111

Please sign in to comment.