import { makeModule } from '../common'
import * as linker from './linker'
import * as imageAPI from './imageAPI'
/**
* 카카오링크와 관련된 함수들이 포함되어 있습니다.
* @namespace Link
* @memberof Kakao
*/
const Link = makeModule([
linker,
imageAPI,
])
/**
* 카카오 링크 전송과 관련된 리소스를 해제합니다.
* @function cleanup
* @memberof Kakao.Link
*/
export default Link