16 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			373 B
		
	
	
	
		
			Python
		
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Copyright 2017 Camptocamp SA
 | 
						|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
 | 
						|
 | 
						|
from ..core import AbstractComponent
 | 
						|
 | 
						|
 | 
						|
class BaseComponent(AbstractComponent):
 | 
						|
    """ This is the base component for every component
 | 
						|
 | 
						|
    It is implicitely inherited by all components.
 | 
						|
 | 
						|
    All your base are belong to us
 | 
						|
    """
 | 
						|
    _name = 'base'
 |