15 lines
211 B
Java
15 lines
211 B
Java
package top.baogutang.music.service;
|
|
|
|
|
|
/**
|
|
*
|
|
* @description:
|
|
*
|
|
* @author: N1KO
|
|
* @date: 2024/12/10 : 21:09
|
|
*/
|
|
public interface IMusicService {
|
|
|
|
AbstractMusicService getMusicService(Integer channel);
|
|
}
|