5 lines
117 B
JavaScript
5 lines
117 B
JavaScript
'use strict';
|
|
|
|
angular.module('app').controller("MainCtrl", function($scope, $http) {
|
|
$scope.user = "soemthing"
|
|
});
|