mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 12:35:59 +00:00
26 lines
530 B
JavaScript
26 lines
530 B
JavaScript
const fileFormat = {
|
|
packageName: 'dbgate-plugin-dbf',
|
|
// file format identifier
|
|
storageType: 'dbf',
|
|
// file extension without leading dot
|
|
extension: 'dbf',
|
|
// human readable file format name
|
|
name: 'DBF',
|
|
// function name from backend, which contains reader factory, postfixed by package name
|
|
readerFunc: 'reader@dbgate-plugin-dbf',
|
|
|
|
args: [
|
|
{
|
|
type: 'text',
|
|
name: 'encoding',
|
|
label: 'Encoding',
|
|
apiName: 'encoding',
|
|
},
|
|
],
|
|
|
|
};
|
|
|
|
export default {
|
|
fileFormats: [fileFormat],
|
|
};
|