15 lines
306 B
Python
15 lines
306 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# ITerativ GmbH
|
|
# http://www.iterativ.ch/
|
|
#
|
|
# Copyright (c) 2018 ITerativ GmbH. All rights reserved.
|
|
#
|
|
# Created on 22.10.18
|
|
# @author: chrigu <christian.cueni@iterativ.ch>
|
|
from core.schema.mutations.logout import Logout
|
|
|
|
|
|
class CoreMutations(object):
|
|
logout = Logout.Field()
|