mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
21 lines
493 B
C#
21 lines
493 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using MySql.Data.MySqlClient;
|
|
using NLog;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
|
|
namespace FFXIVClassic.Common
|
|
{
|
|
// todo:
|
|
// havent decided whether it's worth wrapping every sql class
|
|
// so i'll just leave it with logger for now
|
|
public class Sql
|
|
{
|
|
public static Logger Log = LogManager.GetCurrentClassLogger();
|
|
}
|
|
}
|