blob: f323b4e147f96791fab33b07b006dbc3a5f63e27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /usr/bin/env python
# -*- coding: utf8 -*-
#
# Copyright (C) 2014 Evol Online
# Author: Andrei Karas (4144)
from code.serverutils import *
from code.server.evol.main import *
from code.server.tmw.main import *
serverType = detectServerType()
if serverType == "evol":
serverEvolMain();
else:
serverTmwMain();
|