|
package com.bjtds.brichat.service;
|
|
|
|
import java.io.IOException;
|
|
import java.util.List;
|
|
|
|
public interface MarkdownService {
|
|
void saveItem(String content) throws IOException;
|
|
void processMarkdownFiles(String content) throws IOException;
|
|
List<String> getFileName(String filePath);
|
|
}
|