app/soc/modules/ghop/__init__.py
changeset 2400 5992e2033ca2
parent 2397 d943fa182fae
child 2405 b9a4609d01e4
equal deleted inserted replaced
2399:65a83ae32703 2400:5992e2033ca2
     9 # Unless required by applicable law or agreed to in writing, software
     9 # Unless required by applicable law or agreed to in writing, software
    10 # distributed under the License is distributed on an "AS IS" BASIS,
    10 # distributed under the License is distributed on an "AS IS" BASIS,
    11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12 # See the License for the specific language governing permissions and
    12 # See the License for the specific language governing permissions and
    13 # limitations under the License.
    13 # limitations under the License.
    14  
    14 
    15 """This is the main modules module.
    15 """This is the main modules module.
    16 """
    16 """
    17  
    17 
    18 __authors__ = [
    18 __authors__ = [
    19   '"Sverre Rabbelier" <sverre@rabbelier.nl>',
    19   '"Madhusudan C.S." <madhusudancs@gmail.com>',
    20   '"Lennard de Rijk" <ljvderijk@gmail.com>',
       
    21   ]
    20   ]
    22  
    21 
    23  
    22 
    24  
    23 
    25 from soc.modules.ghop import callback
    24 from soc.modules.ghop import callback
    26  
    25 
    27 def getCallback():
    26 def getCallback():
    28   return callback.Callback
    27   return callback.Callback
    29