FastTunnel/FastTunnel.Core/FastTunnelConst.cs

22 lines
644 B
C#
Raw Normal View History

2022-01-02 00:23:39 +08:00
// Licensed under the Apache License, Version 2.0 (the "License").
// You may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// https://github.com/FastTunnel/FastTunnel/edit/v2/LICENSE
// Copyright (c) 2019 Gui.H
using System;
2021-08-01 18:32:32 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FastTunnel.Core
{
2021-08-06 00:13:02 +08:00
public class FastTunnelConst
2021-08-01 18:32:32 +08:00
{
2021-08-10 20:33:29 +08:00
public const string FASTTUNNEL_VERSION = "FT_VERSION";
public const string FASTTUNNEL_MSGID = "FT_MSGID";
public const string FASTTUNNEL_TOKEN = "FT_TOKEN";
2021-08-01 18:32:32 +08:00
}
}