mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 11:14:05 +00:00
14 lines
403 B
JavaScript
14 lines
403 B
JavaScript
export default class TransloaditPlugin {
|
|
// This contains boilerplate that all TransloaditPlugins share - and should not be used
|
|
// directly. It also shows which methods final plugins should implement/override,
|
|
// this deciding on structure.
|
|
constructor(core, opts) {
|
|
this.core = core;
|
|
this.opts = opts;
|
|
this.name = this.constructor.name;
|
|
}
|
|
|
|
run(files) {
|
|
return files;
|
|
}
|
|
}
|