mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
55bfe2acb9
* Version bump * Got async Nunjucks extensions working * Got JSONPath extension working * Swapped render function for new stuff * Wrote custom recursive render function * traverse -> clone * add-module-exports * Moved tests
14 lines
347 B
JavaScript
14 lines
347 B
JavaScript
import TimestampExtension from './TimestampExtension';
|
|
import UuidExtension from './UuidExtension';
|
|
import NowExtension from './NowExtension';
|
|
import ResponseJsonPathExtension from './ResponseJsonPathExtension';
|
|
|
|
export function all () {
|
|
return [
|
|
TimestampExtension,
|
|
UuidExtension,
|
|
NowExtension,
|
|
ResponseJsonPathExtension,
|
|
]
|
|
}
|