package com.artfess.base.security;

import org.springframework.stereotype.Service;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

@Service
public class DefaultMethodAuthService implements MethodAuthService {
	public List<HashMap<String, String>>  getMethodAuth(){
		ArrayList<HashMap<String, String>>  result = new  ArrayList<HashMap<String, String>>();
		return result;
	}
}
