Files
Kine-backend/ConfBack/manager.py

22 lines
660 B
Python

# -*- encoding: utf-8 -*-
# @author : vincent.benoit@scle.fr
# @brief : Client UNIX Socket Manager
#########################################################
# Importation de modules externes #
import sys, re, os
import socket
#########################################################
# Corps principal du programme #
#########################################################
# Decorators #
#########################################################
# Instantiation #
sock = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)