blob: ae8fba94126285750d9b42c4a82c239abd8fd3a0 [file] [log] [blame]
#!/usr/bin/env python
# encoding: utf-8
"""This module creates a user service.
"""
from ec2stack.core import Service
from ec2stack.models.users.models import User
class UsersService(Service):
__model__ = User