mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-14 22:32:23 +03:00
10 lines
259 B
Python
10 lines
259 B
Python
|
#!/usr/bin/python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# Author: İsmail BAŞARAN <ismail.basaran@tubitak.gov.tr> <basaran.ismaill@gmail.com>
|
||
|
import json
|
||
|
|
||
|
class Policy(object):
|
||
|
"""docstring for Policy"""
|
||
|
def __init__(self,message):
|
||
|
self.message = message
|