1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-24 14:12:03 +00:00
seahub/static/scripts/app/models/activity.js
2015-07-28 19:55:05 +08:00

11 lines
160 B
JavaScript

define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var Activity = Backbone.Model.extend({});
return Activity;
});