Calorie counting web application written in the Go language

overview.js 222B

    $(function () { $.post('/overview') .done(function (response) { if (response) { $('.accounts').text(response.Accounts); $('.calories').text(response.Calories); } }); });